$(function ajax_request(){
	$("body").empty().html('<center style=" margin-top: 150px;color: #999;"><img src="graphics/ajax-loader.gif" /><br /> <i>Loading Page Please Wait</i></center>');
	//setTimeout('ajax_request_go()', 2000);
	$("body").load("index_loaded.php");
});
function ajax_request_go() {
	$("body").load("index_loaded.php");
}
