$(document).ready(function(){
		//Caption Sliding (Partially Hidden to Visible)
		$('.boxgrid1.caption').hover(function(){
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'5px'},{queue:false,duration:160});
		});
		
		$('.boxgrid2.caption').hover(function(){
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'5px'},{queue:false,duration:160});
		});
		
		$('.boxgrid3.caption').hover(function(){
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'5px'},{queue:false,duration:160});
		});
		
		$('.boxgrid4.caption').hover(function(){
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'5px'},{queue:false,duration:160});
		});
	});
	
	
