function infoOver(id) {
	/*$j('#debug').html($j('#debug').html()+"<br />enter");*/
	 $j('#'+id).queue(function () {
		 $j(this).stop(); 
		 $j(this).animate({ 
			    top: "0px"
			  }, 500 );
		 $j(this).dequeue();
	    
	 });
}

function infoOut(id) {
	$j('#'+id).queue(function () {
		$j(this).stop();
		$j(this).animate({ 
			top: "83px"
			}, 1000 );
		$j(this).dequeue();
	    
	 });
}

