// var tempObj = eval(document.getElementById("nav").getElementsByTagName("LI"));
 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"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
///////////////////////////////////////////////////////////////////////////////////
lsfHover = function() {
	var sfEls = document.getElementById("lnav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" lsfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" lsfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", lsfHover);

function jump(url,acct,prod) {
	if (document.images && url)	{
		//if (arguments.length > 1) {
		//	type = arguments[1];		
		//}
		//else {
		//	type = 'result';
		//}			
		var parms = '';
		if (acct.length > 1) {
			parms = '&co=' + acct;
		}
		if (prod.length > 1) {
			parms = '&pid=' + prod;
		}		
 		new Image().src = '/images/_jump.gif?url=' + escape(url).replace(/\+/g, '%2B') + parms;
	}	
	return true;
}