sfHover = function() 
{
	var sfEls = document.getElementById("nav").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"), "");
		}
	}
	
	var sfEls1 = document.getElementById("nav1").getElementsByTagName("LI");
	for (var i=0; i<sfEls1.length; i++) 
	{
		sfEls1[i].onmouseover=function() 
		{
			this.className+=" sfhover";
		}
		sfEls1[i].onmouseout=function() 
		{
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
	
	var sfEls2 = document.getElementById("nav2").getElementsByTagName("LI");
	for (var i=0; i<sfEls2.length; i++) 
	{
		sfEls2[i].onmouseover=function() 
		{
			this.className+=" sfhover";
		}
		sfEls2[i].onmouseout=function() 
		{
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
	
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

var today = new Date();
var the_date = new Date("December 31, 2023");
var the_cookie_date = the_date.toGMTString();
var the_cookie = "users_resolution="+ screen.width ;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie;