$().ready(function (){	
	
	$(".bar").mouseenter(function() {	
		$(this).children("span").animate({
			paddingBottom: "+125px",
			marginTop: "-125px"
			}, 300);
		});
	
	$(".bar").mouseleave(function () {
		$(this).children("span").stop(true);
		});
	
	$(".bar").mouseleave(function () {
		$(this).children("span").animate({
			paddingBottom: "0",
			marginTop: "0"
			},300);
		});
	
});