var j$ = jQuery.noConflict();

j$(document).ready(function(){
	j$('.boxgrid.captionfull').hover(function(){
		j$(".cover", this).stop().animate({left:'15px'},{queue:false,duration:550});
	}, function() {
		j$(".cover", this).stop().animate({left:'-100px'},{queue:false,duration:550});
	});
});
