$(function(){
	if(document.getElementById("promo-3")){		   
		$('#promo-3 div').mouseenter(function(){
			$(this).find('h2').stop().animate({left: 250},300,function(){
				$(this).next().fadeIn(100);
			});
		}).mouseleave(function(){
			$(this).find('span').fadeOut(100,function(){
				$(this).prev().stop().animate({left: 0},300,function(){});
			});
		});
	}
});
