
function initialize()
//runs at onload of window
{
	
	ihtScreen = new screenObject(); 
		placeNavBar()
		document.onmousemove = mousePosition; //moz
	
	window.onresize = windowResize;

	initClippings(); //initialize clippings	
}
	

function displayFix()
//in IE there is a bug will cause some elements to not draw on screen when the user uses the back button
//the below fixes that problem by forcing the page to redraw
{
	document.getElementById("bodyNode").style.display = "block"
}	

window.onload = displayFix;

//
// going to load the window by a script call at the bottom of the page
// hopefully this will help speed up the page and not require images to load
// for the scripts to start
//

/* Browser Fixes */

if (document.all) classFix = "className";
else classFix = "class"
