//Full Caption Sliding (Hidden to Visible)
				$(document).ready(function(){
				
					$('.boxgrid.captionfull').hover(function(){
						$(".cover", this).stop().animate({top:'15px'},{queue:false,duration:160});
					}, function() {
						$(".cover", this).stop().animate({top:'66px'},{queue:false,duration:160});
					});
				
				
				//Partial Sliding (Only show some of background)
				$('.boxgrid-peek.peek').hover(function(){
					$(".cover", this).stop().animate({top:'84px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				});
				
				});
