$(document).ready(function(){
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'162px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'262px'},{queue:false,duration:160});
	});
	$('a.gallery').live('mouseenter', function(){
		$(this).append('<span></span>');
	}).live('mouseleave', function(){
		var t = $(this);
		t.find('span').fadeOut('fast', function(){
			t.find('span').remove();
		});
	});	
});
