$(function(){
	$('#info-for').hide();
	$('#row-2 h2').add('#info-for').not('#row-2 .pop h2').mouseover(function(){
	   	$('#row-2 h2').addClass('nav-here');
		$('#info-for').show();
	});
	$('#row-2 h2').add('#info-for').not('#row-2 .pop h2').mouseout(function(){
	   	$('#row-2 h2').removeClass('nav-here');
		$('#info-for').hide();
	});
});
