$(document).ready(function(){
	
	//Full Caption Sliding for small sized elements (Hidden to Visible)
	$('.boxgrid.captionsmall').hover(function(){
		$(".cover", this).stop().animate({top:'47px'},{queue:false,duration:600});
	}, function() {
		$(".cover", this).stop().animate({top:'375px'},{queue:false,duration:600});
	});
	
	
	//Full Caption Sliding for Regular Elements (Hidden to Visible)
	$('.boxgrid-gallery.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'198px'},{queue:false,duration:600});
	}, function() {
		$(".cover", this).stop().animate({top:'375px'},{queue:false,duration:600});
	});	

});
