/*
 * Caption Slider
 */

			$(document).ready(function(){


				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'145px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'165px'},{queue:false,duration:160});
				});
				
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid2.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'145px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'165px'},{queue:false,duration:160});
				});
				
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid3.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'115px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'135px'},{queue:false,duration:160});
				});
				
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid4.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'115px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'135px'},{queue:false,duration:160});
				});
				
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid5.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'115px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'135px'},{queue:false,duration:160});
				});

			});