var posX, posY;
var ie    = document.all?1:0;
var ns    = document.layers?1:0;
var dom   = document.getElementById?1:0;
var dhtml = new runLayer("Wabmo");
var path  = new Array(583,2,583,2,583,2,583,2,583,2,583,2,583,8,583,8,583,8,583,18,583,18,583,18,583,28,583,28,583,28,583,28,583,38,583,38,583,38,583,38,583,38,583,38,583,38,567,42,553,45,547,49,433,49,419,52,352,59,326,65,320,67,305,72,271,84,239,97,218,112,198,131,180,151,147,197,133,218,119,241,108,263,98,287,91,308,85,328,84,363,84,374,87,392,90,405,90,406,97,425,105,425,107,425,107,425,107,425,120,425,145,425,168,425,189,425,240,425,315,425,343,425,375,425,400,425,421,425,440,427,460,383,463,375,465,367,468,353,473,333,478,291,478,263,478,239,478,199,472,166,467,150,463,139,459,130,441,105,429,93,412,80,384,65,359,55,321,52,281,52,242,60,215,73,91,95,77,110,67,120,67,220,65,280,57,380,50,418);
var index = 0;var trNum = 0;
function runLayer(id)
	{
		this.name = dom?document.getElementById(id):ie?document.all[id]:ns?document.layers[id]:null;
		if (this.name !== null)
			{
				this.css    = (dom||ie)?this.name.style:this.name;
				this.x      = dom?this.css.pixelLeft:ie?parseInt(this.css.left):this.css.left;
				this.y      = dom?this.css.pixelTop:ie?parseInt(this.css.top):this.css.top;
				this.moveTo = moveTo;		return this;			}
		else alert('The layer does not exist');	}
function moveTo(x,y)
	{
		if(dom||ie)
			{
				this.x=x;	this.y=y;	this.css.left=x;	this.css.top=y;	}
		else this.css.moveTo(x,y);	}
function timeline()
	{
		if(trNum < (path.length-1))
			{
				dhtml.moveTo(path[trNum],path[trNum+1])
				trNum += 2;	setTimeout('timeline()',10);			}
		else trNum=0; 	}