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("sfhover", "");		}	}}if (document.all&&document.getElementById) window.onload=sfHover;document.write('<style type="text/css" media="all">#pTitle {top:0px; display:none;}</style>');/* Filters for transparencies *///var pageFilters = '<style type="text/css" media="screen">'// the alpha hovers for images+	'div#footerWrap .prc img {filter:alpha(opacity=20);-moz-opacity:0.2;opacity:0.2;}'+	'</style>';document.write(pageFilters);