$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
	$('.thumb.txt_thumb').hover(function(){
		$(".cover", this).stop().animate({top:'244px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'284px'},{queue:false,duration:160});
	});		
});
