jQuery(function($){
	//解决头顶弹出框长度只有998px，而不是100%，其实可以用css搞定的，可惜俺不会css，就先这样搞定了
	var windowWidth=$.support.opacity ? window.innerWidth : document.documentElement.clientWidth;
	$("#sysmsg-box").css("width",windowWidth);
});
