var site_timeout = '';
var Timer = {
	initTimeout : function(){
		site_timeout = setTimeout("Timer.timed_out();", 30000);	
	},
	resetTimeout : function(){
		clearTimeout(site_timeout);
	},
    timed_out: function(){
	    this.resetTimeout();
	    $('#loader').fadeOut(
			function(){
				$('#timedout').html('Maximum server execution time exceeded!<br />The server encountered an error or simply timed out. Please try again in a few minutes or contact the system administrator if the problem persists.');
				$('#timedout').fadeIn(
					function(){
						setTimeout("$('#timedout').fadeOut();", 10000);
					});
			});
    }
}