﻿//平滑滚动到顶部
toTop = {
	init:function(){
		document.getElementById("toTop").onclick=function(e){
			toTop.set();
			return false;
		}		
	},
	waitTimer:null,
	set:function(){
		var d_st=document.documentElement.scrollTop;
		if(window.navigator.userAgent.indexOf("MSIE")>=1){
			for (var i=d_st; i>10; i-=Math.floor(i/6)){
			window.scrollTo(0,i);
			}
			window.scrollTo(0,10);
		}
		else{
		window.scrollTo(0,Math.floor(d_st / 2));
		
		 if(d_st>10){
				 waitTimer=setTimeout("toTop.set()",40);
		  }
			else{
				  clearTimeout(waitTimer);
			}
		}
	}
}
window.onload = function(){toTop.init();}


lastScrollY=0;
function heartBeat(){ 
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
    diffY = document.documentElement.scrollTop;
else if (document.body)
    diffY = document.body.scrollTop
else
    {/*Netscape stuff*/}

percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("full").style.top=parseInt(document.getElementById("full").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
}
function mClk(){ //自
event.srcElement.click();
} 
//去掉鼠标经过QQ时就点击功能 onmouseover='mClk()'
suspendcode="<div id=\"full\" style='right:20px; top:180px; position:absolute;z-index:1000;text-align:center;'><table width='99' border='0' cellpadding='0' cellspacing='0'><tr><td align='center'><a id='toTop' href='#top'><img border='0' src='http://www.sitestar.cn/Plugins/Contact/icon_top.gif' alt='顶部' /></a></td></tr><tr><td align='center' style='border-left:solid 1px #dde6ec;border-right:solid 1px #dde6ec;height:26px;font-size:12px;font-family:Arial;line-height:18px;background:#fff;'>招生电话<br>0591-22067839</td></tr><tr><td align='center' style='border-left:solid 1px #dde6ec;border-right:solid 1px #dde6ec;height:26px;background:#fff;'><a href='tencent://message/?uin=1607896451&Site=www.mhwzmhzz.com&Menu=yes'><img  border='0' align='absmiddle' src='http://wpa.qq.com/pa?p=4:1607896451:4' title='点击QQ与我们交流'/> 在线咨询</a></td></tr><tr><td align='center'><a href='#bottom'><img border='0' src='http://www.sitestar.cn/Plugins/Contact/icon_bottom.gif' alt='底部' /></a></td></tr></table></div>"

document.write(suspendcode);
window.setInterval("heartBeat()",1);
