// JavaScript Document

function MM_changePosDivH(objId1,theProp) { //edited for random position
 var theValue = 30 * Math.ceil(Math.random() * 12) +"px";
  var obj = null; with (document){ if (getElementById)
  obj1 = getElementById(objId1);
 }
  if (obj1){
	if (theValue == true || theValue == false) {
    	eval("obj1.style."+theProp+"="+theValue);
	} else {
		eval("obj1.style."+theProp+"='"+theValue+"'");
  	}
  }
}

sfHover = function() { 
	var sfEls = document.getElementById("menu").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);
