// Fun JavaScript Document


$(function(){
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'103px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'133px'},{queue:false,duration:160});
	});
	$('#secondaryContent .boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'73px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	});
	$('#dvdslist .boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'275px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'305px'},{queue:false,duration:160});
	});
	$('.bigthumbs .boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'143px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'173px'},{queue:false,duration:160});
	});

});

