$(document).ready(function() {
  
	$('.promo_bottom ul li a').hover(
		function(){
			$(this).children('h2').show();
		},
		function(){
			$(this).children('h2').hide();
		}
	);
	
	$('.promo_top a').hover(
		function(){
			$(this).children('h2').show();
		},
		function(){
			$(this).children('h2').hide();
		}
	);
	
	$('.promo_wide a').hover(
		function(){
			$(this).children('h2').show();
		},
		function(){
			$(this).children('h2').hide();
		}
	);
	
});

