
 jQuery.noConflict();
     
     // Use jQuery via jQuery(...)
     jQuery(document).ready(function(){
     
	   	
		jQuery('.boxgrid.caption').hover(function(){
					jQuery(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});
				}, function() {
					jQuery(".cover", this).stop().animate({top:'230px'},{queue:false,duration:160});
				});
	

		

     });

