jQuery(document).ready(function($) {
	$('.new_work li span').css('bottom', '-65px');
	
	$('.new_work li').mouseenter(function () {
		$(this).children('a').children('span').animate({bottom:'-20px'}, 500);
	}).mouseleave(function () {
		$(this).children('a').children('span').animate({bottom:'-65px'}, 500);
	});
});
