// JavaScript Document

function MM_changePosDivH(objId1,objId2,theProp) { //edited for random position
  var theValue = 45 + Math.round(Math.random() * 280) +"px";
  var obj = null; with (document){ if (getElementById)
  obj1 = getElementById(objId1);
  obj2 = getElementById(objId2); }
  if (obj1){
    if (theValue == true || theValue == false)
      eval("obj1.style."+theProp+"="+theValue);
    else eval("obj1.style."+theProp+"='"+theValue+"'");
  }
  if (obj2){
    if (theValue == true || theValue == false)
      eval("obj2.style."+theProp+"="+theValue);
    else eval("obj2.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);
