﻿function redirect(selectObj) {
	document.location = selectObj.options[selectObj.selectedIndex].value;
}

sfHover = function() {
	var sfEls = document.getElementById("primarynav").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 (window.attachEvent) window.attachEvent("onload", sfHover);

function getRef(obj){
        return (typeof obj == "string") ?
        document.getElementById(obj) : obj;
}

function setStyle(obj,style,value){
        getRef(obj).style[style]= value;
}

function setClassName(obj, className)
{
	if(obj == 'fontsizecontainer')
	{
		var today = new Date();
		var expire = new Date();
		expire.setTime(today.getTime() + 3600000*24*365);
 	
		document.cookie = "fontclass=" + className + ";expires=" 
			+ expire.toGMTString() + ";path=/";
	}
		
   	getRef(obj).className = className;
}

