//when the window with all frames is ready
$(window).load(function() {
	//hideLoadingDiv();
	$('#allTheDocument').show();
});

//when the document is ready
$(function(){
	autoPageTranslateNew(lang);
});
///////////////

function displayLoadingDiv(){

	document.write('<div id=\'siteLoader\'><div id="flashContent"><\/div>');
	document.write('</div>');
}

//function called in body onload
function hideLoadingDiv(){
	$("#siteLoader").remove();
}


function autoPageTranslateNew(langID){
	
	$('.dynamicTranslate').each(function(){
		this.innerHTML = tPT[this.id];
	});
}