			$(document).ready(function(){
				
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'25px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'157px'},{queue:false,duration:500});
				});
				
				//Vertical Sliding
				$('.boxgrid.slidedown.back').hover(function(){
					$(".backcover", this).stop().animate({top:'-30px'},{queue:false,duration:300});
				}, function() {
					$(".backcover", this).stop().animate({top:'0px'},{queue:false,duration:500});
				});

			});
