var http_path = "http://192.168.1.12/walk/";



if(window.location.hostname=="wa.lk"){
	var http_path = "http://wa.lk/";	
	}

if(window.location.hostname=="www.wa.lk"){
	var http_path = "http://www.wa.lk/";	
	}



function loadContent(elementSelector, sourceUrl , id) {
		//$(elementSelector).html("<br/><img src='images/loader.gif' style='padding-left:185px;'/>");
	
	$.ajax({
   type: "POST",
   url: sourceUrl,
   data: "id=" + id,
   success: function(msg){
	  // alert(msg);
     $(elementSelector).html(msg);
	 
   }
 });
	
}

	function loadContentSub(elementSelector, sourceUrl , id) {
		$.ajax({
	    type: "POST",
	    url: http_path + sourceUrl,
	    data: "id=" + id,
	    success: function(msg){
		$(elementSelector).html(msg);
		   }
		 });	
		}
 

 
