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