function setSiteURL() { 
	window.site = "http://www.ayokebali.com/index.php/"; 
} 
$(document).ready( function() {
	setSiteURL();
	$("#loading").hide();
   $("#loading").ajaxStart(function(){
			var x = ($(window).width()/2)-($(this).width()/2);
			var y = ($(window).height()/2)-($(this).height()/2);

		  	$(this).show().css({ position 		: "absolute",
				                    	top        	: y+"px",
				               		left      	: x+"px"
			});
   });

   $("#loading").ajaxStop(function(){
      $(this).hide();
   });
   $("#submit").click(function(){
   	return false;
   });
});		
function hide(div){
	$(div).hide("slow");	
};
function show(page,div){ 
	$.ajax({
		url:""+site+""+page+"",
		beforeSend:function(response){
			$(div).slideUp("slow");
		},
		success: function(response){			
    		$(div).html(response);
    		$(div).slideDown("slow");
  		},
  		dataType:"html"  		
  	});
  	return false;
};
		

