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(544,4,544,4,544,4,544,4,544,4,544,4,544,4,544,4,544,5,544,6,544,7,546,14,549,24,551,30,554,37,557,45,563,64,564,67,565,71,568,80,570,90,570,99,567,109,560,116,540,128,526,129,511,129,498,127,481,122,457,115,437,109,394,97,376,92,356,86,334,80,310,73,286,66,255,59,209,53,183,53,149,53,115,58,104,59,87,65,75,74,65,97,65,110,71,121,92,136,115,145,134,151,180,160,246,163,268,161,292,159,352,156,412,153,472,153,530,154,567,162,591,183,600,201,600,213,596,225,581,234,544,236,492,234,436,225,410,224,390,224,365,224,333,221,306,218,281,216,257,216,235,222,211,231,190,243,173,254,157,266,141,278,128,292,108,320,102,334,98,347,96,357,96,367,96,379,96,388,97,393,97,393,90,393,80,393,70,393,60,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; }



