// JavaScript Document
function waitToLoad(element){
	var loadPlaceholder = document.createElement('DIV');
	loadPlaceholder.id="loadPlaceholder";
	loadPlaceholder.style.position="absolute";
	loadPlaceholder.style.top=element.offsetTop+"px";
	loadPlaceholder.style.left=element.offsetLeft+"px";
	loadPlaceholder.style.height=element.offsetHeight+"px";
	loadPlaceholder.style.width=element.offsetWidth+"px";
	loadPlaceholder.style.zIndex=3;
	loadPlaceholder.style.backgroundColor="#CCCCCC";
	document.body.appendChild(loadPlaceholder);
	imageArray = element.getElementsByTagName["IMG"];
	imageArray[imageArray.length].onload = function () {
		//if(document.readyState == 4){
			loadPlaceholder.parentNode.removeChild(document.getElementById("loadPlaceholder"));
		//}
	}
}