//	since we're targeting NN4...
window.onResize = function() {
	if (document.layers) {
		if (innerWidth != origWidth || innerHeight != origHeight){ 
			location.reload(true)
		}
	}
	if(hideFTextDivs) {
		alert('exists');
		hideFTextDivs();
	}
		//alert('resized');
}

//	create a new stylemanager object
var SM = new StyleManager();
//	create a new menu object with the 
//	stylemanager object above
var myMenu = new Menu(SM);


//	add the menu dropdown div ids to the list
myMenu.addMenu("menu1");
myMenu.addMenu("menu2");
myMenu.addMenu("menu3");
myMenu.addMenu("menu4");
myMenu.addMenu("menu5");
//myMenu.addMenu("menu6");
//myMenu.addMenu("menu7");

//	initialize the menu (pass in the name. this sucks,
//	but it's the only way i can get part of it to work
//	and keep it easy to use, for now)
myMenu.init("myMenu");

function err(e){
	//alert(e);
}

window.onerror = err;