function gi (id) { return document.getElementById(id) }
function gid (id,display) { return document.getElementById(id).style.display = (display?"block":"none"); }
function gicl (id,classname) { return document.getElementById(id).className = classname; }
function gt (id) { return document.getElementsByTagName(id) }
function gn (id) { return document.getElementsByName(id) }

$(document).ready(function(){
	$("#top")
		.animate({left: "310", top: "-15"},20000)
		.animate({left: "250", top: "-30"},30000)
		.animate({left: "300", top: "10"},40000)
		.animate({left: "260", top: "-5"},60000)
	;
})
