$().ready(function(){   
    displayLeftLocation("","","");   
});   
  
//References   
var loading = $("#leftlocationloading");   
var content = $("#leftsearchlocation");   
  
//show loading bar   
function showLoading(){   
    content.hide();
	loading.show(); 
	
}   
//hide loading bar   
function hideLoading(){   
    loading.hide();
	content.show();
};   
  
function displayLeftLocation(cat,tipeid,agntid) {  
         
    //Send the request and display the result   
    showLoading();   
    var targetUrl = "ajax/leftlocation.php?category="+cat+"&typeid="+tipeid+"&agentid="+agntid;   
    content.load(targetUrl, hideLoading);   
     
}
