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(497,1,497,3,497,7,497,9,497,11,497,13,497,15,495,17,487,76,486,102,483,140,480,180,474,276,472,300,471,340,471,361,471,367,471,368,471,368,471,368,471,367,466,348,451,296,444,270,413,194,396,120,389,90,387,80,383,70,383,70,383,70,382,70,370,101,363,137,339,211,317,299,295,379,287,404,285,408,285,406,285,402,269,280,257,200,237,94,215,42,193,25,182,16,179,13,174,12,164,17,159,22,142,42,115,122,87,218,74,278,59,324,44,358,36,370,35,380,35,390,35,400,35,410,35,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; }
