$(document).ready(function(){
	$('.caption').css('bottom','207px');
	$('.tn a').hover(function() {
		$(this).find('.caption').animate({'bottom':'0'}, {duration:300});
		$(this).find('img').animate({'bottom':'0'}, {duration:300});
	},
	function() {
		$(this).find('.caption').animate({'bottom':'207px'}, {duration:400});
		$(this).find('img').animate({'bottom':'207px'}, {duration:400});
	});
});
