// JavaScript Document
function loadweibo(){
	var url =  "http://www.fbi8341.com/index.php/weibo/indexweibo";
	$.ajax({
	type: "get",
	url: url,
	dataType: "html",
	beforeSend: function(XMLHttpRequest){
		if($('#wblist')){
			$('#wblist').html('<center><br><br><br><br><span style="color:#fff">loading...</span></center>');
		}
		//ShowLoading();
	},
	success: function(html){
		if($('#wblist')){
			$('#wblist').html(html);
		}
	},
	data: "&ts=" + new Date().getTime(),
	complete: function(XMLHttpRequest, textStatus){
	//HideLoading();
	},
	error: function(){
	//请求出错处理
	}
	});
}

function menuFix() {
 var sfEls = document.getElementById("nav").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;
