$(document).ready(function() {
	
	//$('.logo').hide().fadeIn(3000);
	//$('#content').hide().fadeIn(1000);
	
	$("a.navinfo").children("h4").animate({opacity: 0}, 0);
	$("a.navinfo").children("p").animate({opacity: 0}, 0);
	
	$("a.navinfo").hover(  
		function() {  
			if (jQuery.support.opacity) {
			 $(this).children("h4").animate({opacity: 1}, 300);
			 $(this).children("p").animate({opacity: 1}, 300);
			}
		},
		function() {  
			if (jQuery.support.opacity) {
			 $(this).children("h4").animate({opacity: 0}, 50);
			 $(this).children("p").animate({opacity: 0}, 50);
			}
		}  
	);
	
});

