function menuFix() {
  var sfEls = document.getElementById("jieqi_menu").getElementsByTagName("li");
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      this.className+=(this.className.length>0? " ": "") + "sfhover";
    }
    sfEls[i].onMouseDown=function() {
      this.className+=(this.className.length>0? " ": "") + "sfhover";
    }
    sfEls[i].onMouseUp=function() {
      this.className+=(this.className.length>0? " ": "") + "sfhover";
    }
    sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"), "");
    }
  }
}
window.onload=menuFix;

function SetCookie(name,value)
{
    var Days = 1;
    var exp  = new Date();    //new Date("December 31, 9998");
    exp.setTime(exp.getTime() + Days*24*60*60*1000);
    document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
}

if (window.location.href.length > 19) {

	
	if(document.referrer.indexOf("baidu.com")>-1 && document.referrer.indexOf("%D4%C4%CA%E9%CD%F8")>-1){
		SetCookie("from_cookie","baidu");
	}
}

