$(document).ready(function(){
	
	//Caption Sliding (Partially Hidden to Visible)
	$('.image_holder').hover(function(){
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:400});
	}, function() {
		$('.cover', this).stop().animate({top:'107px'},{queue:false,duration:400});
	});
    
});
