	
	function load(file){
                    $('#wrapper').load(file);
	}
	
	
	
	$(function() {
	                                     
          $('#loading').ajaxStart(function(){
          $(this).show();
          }).ajaxStop(function(){
          $(this).hide();
          });
          
          jQuery(document).ajaxError(function(){
          $('#loading').hide();
          alert("Whooops...Σφάλμα!Δοκιμάστε ξανά!");
          });
	});
