

function moveSpecials()
{
	var startX = 3;
	var startY = 10;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d = document;
	function ml(id)
	{
		var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.right=x;this.style.top=y;};
		el.x = startX;
		el.y = startY;
		return el;
	}
	window.stayTopLeft=function()
	{
		ftlObj.y += (1 + startY)/8;
		if(ftlObj.y > 325) return;
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 5);
	}
	ftlObj = ml("special");
	stayTopLeft();
}

/*
function move(obj, howmuch) {
	obj.style.top = parseInt(obj.style.top) + parseInt(howmuch);
}

function moveSpecials() {
	box = document.getElementById("special");
	box.style.top = parseInt(-300);
	for (i=0; i < 400; i++) {
		setTimeout("move(box, 1)", 10000);
	}
}
*/