$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	
	//Full Caption Sliding (Hidden to Visible)
	$('.tote-row .panel').hover(function(){
		$(".cover", this).stop().animate({top:'80px'},{queue:false,duration:160});
		$(".cover", this).removeClass("arrow_up").addClass("arrow_down");
	}, function() {
		$(".cover", this).stop().animate({top:'133px'},{queue:false,duration:160});
		$(".cover", this).removeClass("arrow_down").addClass("arrow_up");
	});
	
});
