
function startup(){
	/*
	#############################################
	This function runs on startup of the calling file.
	The following if statement checks the width of content, and if it's wide (generally known only to IE)
	it sets the position att. of 'absolute' to the navigation on the left.
	#############################################

	*/
/*	
	if (document.getElementById("content") != null && document.getElementById("leftcell") != null){
		if(document.getElementById("content").clientHeight < document.getElementById("leftcell").clientHeight){
			document.getElementById("content").style.clientHeight = document.getElementById("leftcell").style.clientHeight;
		}
	}
*/
	if (! document.all && document.getElementById("leftcell") != null){
		//document.getElementById("leftcell").style.position = 'fixed';
	}
}

window.onload = startup;

