var $j = jQuery.noConflict();

$j(document).ready(function() {
	$j('.box').hover(function() {
		$j('.thumbTitle', this).stop().animate({top:'210px'}, {queue:false, duration:160});
		},
		function() {
			$j('.thumbTitle', this).stop().animate({top:'295px'}, {queue:false, duration: 160});
		});
});

