var $j = jQuery.noConflict();
			$j(document).ready(function(){
				$j('.boxgrid.caption').hover(function(){
					$j(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});
				}, function() {
					$j(".cover", this).stop().animate({top:'180px'},{queue:false,duration:160});
				});
			});
