$.noConflict();
	jQuery(document).ready(function($) {
	$('ul#box li').hover(function(){
	$(this).find('img').animate({top:'160px'},{queue:false,duration:400});
	}, function(){
	$(this).find('img').animate({top:'0px'},{queue:false,duration:400});
	});
});
