// JavaScript Document
function killErrors() {
return true;
}
window.onerror = killErrors;
// -->

function chg()
{
    if(document.getElementById("handimg").src=="http://www.shanghailika.com/images/shou.gif")
	{
	    document.getElementById("handimg").src="/images/shou2.gif";
	}
	else
	{
	    document.getElementById("handimg").src="/images/shou.gif";
	}
	//setInterval("chg()",500)
	setTimeout("chg()",100)
}
