$(document).ready(function(){


	if ($('#footertop').get()!='')
	{
		 $.ajax({
		   type: "POST",
		   url: "footer.html",
		   dataType: "html",
		 success: function(msg){
			 $('#footertop').html(msg);
		   }
		 });
	
			
		
	}

});
