   
 /* include any js files here */  
 /* docRoot is defined before this file is included in the head */
 
 include(_globalDocRoot+'js/tabs.js');

 
 sfHover = function() {
	var navObj2 = document.getElementById("usermenu");
	if(navObj2){
		var sfEls1 = navObj2.getElementsByTagName("LI");
		var slen1 = sfEls1.length;
		for (var i=0; i <  slen1; i++) {
			sfEls1[i].onmouseover=function() {
				this.className="menuhover";
			}
			sfEls1[i].onmouseout=function() {
				this.className="";
			}
		}	
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
 



