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(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,4,3,8,4,70,14,77,18,87,22,88,23,108,32,122,35,222,54,239,59,255,67,280,77,300,86,308,91,315,94,320,97,330,105,350,122,360,132,350,155,333,163,320,173,312,178,300,184,291,190,289,193,277,197,267,203,242,216,221,222,152,231,142,239,123,259,117,271,107,295,105,303,101,315,99,332,99,354,100,364,100,368,90,369,90,369,90,369,80,369,80,370,70,380,60,390,50,400,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; 	}
