// JavaScript Document
var SkyOffset=0;
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
//var cur_style='';

function SkyMoveCaller()
{
	if (!isIE)
	{
		SkyMoving=setInterval(SkyMove,150);	
	}
}

function SkyMove()
{
 if (SkyOffset<677)
 {
//  cur_style = document.body.style.cursor;
  document.getElementById("sky").style.backgroundPosition = SkyOffset+"px 0px";
//  document.body.style.cursor = 'hand';
  SkyOffset++;
 }
 else 
 {
	 SkyOffset=0;
	 
 }
}
function SkyMoveStop()
{
 clearInterval(SkyMoving);
}