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