	$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
		$('.spotlight').each(function(i){
			$(".spotlight_cover", this).css({top:'120px'});							  
		});
		$('.spotlight').hover(function(){
			$(".spotlight_cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		}, function() {
			$(".spotlight_cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
		});
	});
