function fly(flyId,top){
	var topTo;
	if (document.documentElement && document.documentElement.scrollTop)
		topTo = document.documentElement.scrollTop;
	else if (document.body)
		topTo = document.body.scrollTop;
	
	topTo = top+topTo;
	jQuery("#"+flyId).stop();
	jQuery("#"+flyId).animate({ top:topTo }, 1000);
}

function close(id){
	jQuery("#"+id).fadeOut("slow");
}