 var $j = jQuery.noConflict();
$j(document).ready(function(){
			$j('ul.hover_block li').hover(function(){
				$j(this).find('img').animate({top:'100px'},{queue:false,duration:500});
			}, function(){
				$j(this).find('img').animate({top:'0px'},{queue:false,duration:500});
			});
		});
