
/* Sliding box */	

			$(document).ready(function(){

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

				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption.video').hover(function(){
					$(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'168px'},{queue:false,duration:160});
				});
			});

