///////////////////// 页面载入时，右下角弹出窗口 ////////////////////////////
//短信提示使用(asilas添加)
$(function(){
	showVideo =	setInterval(ShowDiv,2000);
})
function closeDiv()
{
    $("#eMeng").animate({
        width:"0px",height:"0px"
    },1000);
	setInterval(function(){$("#eMeng").remove()},1000);
}
function ShowDiv()
{
	clearInterval(showVideo);
	$("#eMeng").animate({
	   width:"240px",height:"230px"
	},1000);
	var vertical = setInterval(function(){
		$("#eMeng").css("bottom",document.documentElement.scrollTop-document.documentElement.scrollTop*2+"px");
	},200);
}
