﻿var Cjjl={
	
	autob:function()
	{
		Cjjl.I = 0;
		Cjjl.autos();
		setTimeout('Cjjl.autob()',3000);
	},
	
	autos:function()
	{
		if(Cjjl.I<11)
		{
			$("cjjl").style.top = (_px($("cjjl").style.top) - 5) + "px";
			Cjjl.I++;
			setTimeout('Cjjl.autos()',100);
		}
		else
		{
			if((_px($("cjjl").style.top)*-1)==($("cjjl").scrollHeight-55))
			{
				$("cjjl").style.top = 0;
			}
		}
	},
	
	begin:function()
	{
		setTimeout('Cjjl.autob()',3000);
	}
}

if (!(navigator.appName=="Microsoft Internet Explorer"))
{
	window.addEventListener("load",Cjjl.begin,false);
}
else
{
	window.attachEvent("onload",Cjjl.begin);
}