function moveDiv(id)
{
	div=document.getElementById(id);
	if (div.style.position != "relative")
		{
			div.style.position="relative";
			div.style.top=0;			
		}
		if (div.style.top=="-770px" || div.childNodes.length==3) 
			div.style.top=0;
		else
			div.style.top=(parseInt(div.style.top.substr(0,div.style.top.length-2))-2)+"px";
		if(parseInt(div.style.top.substr(0,div.style.top.length-2))%110==0)
			{
				t=setTimeout("moveDiv('climas')",4000);
			}
		else
			{
				t=setTimeout("moveDiv('climas')",50);
			}
}

