//Javascript for all sections

//Resize window
function resizeWindow() {
	if ((screen.width>=1024) && (screen.height>=768))
	{window.resizeTo(975,750);}
	else
	{window.resizeTo(800,600);}
}

sfHover = function() {
	var sfEls = document.getElementById("navdd").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

if (document.all && !window.opera) {
 //alert("I am IE");
//window.attachEvent("onload", sfHover);
 window.onload=sfHover;
}
