// JavaScript Document
window.onload=loadPage;
window.onresize=resize;
window.onrefresh=resize;

function resize(){
	var availHeight;
	if (self.innerWidth) availHeight = self.innerHeight; // all except Explorer
	else if (document.documentElement && document.documentElement.clientHeight) availHeight = (document.documentElement.clientHeight); // Explorer 6 Strict Mode
 	else if (document.body)  availHeight = document.body.clientHeight; // other Explorers

	document.getElementById("content").style.height=parseInt(availHeight-445)+"px";
	//document.getElementById("div_content").style.height=parseInt(availHeight - 222)+"px";
	
	//alert(availHeight);
	
	//heavyImage = new Image(); 
	//heavyImage.src = "http://glamsmile.host8.be/_images/Onderste-button_over.png";
}

function loadPage(){
	resize();
	//applyDropShadows("img.photo1","shadow3");
	
}