	$(document).ready(function(){
		//Full Caption Sliding (Hidden to Visible)
		$('.featured_boxgrid.featured_captionfull').hover(function(){
			$(".featured_cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".featured_cover", this).stop().animate({top:'87px'},{queue:false,duration:160});
		});
		//Caption Sliding (Partially Hidden to Visible)
		$('.featured_boxgrid.featured_caption').hover(function(){
			$(".featured_cover", this).stop().animate({top:'45px'},{queue:false,duration:160});
		}, function() {
			$(".featured_cover", this).stop().animate({top:'65px'},{queue:false,duration:160});
		});
		
		
				//Full Caption Sliding (Hidden to Visible)
		$('.elenco_boxgrid.featured_captionfull').hover(function(){
			$(".elenco_cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".elenco_cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
		});
		//Caption Sliding (Partially Hidden to Visible)
		$('.elenco_boxgrid.elenco_caption').hover(function(){
			$(".elenco_cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
		}, function() {
			$(".elenco_cover", this).stop().animate({top:'128px'},{queue:false,duration:160});
		});
	});