$(function() {
	var mouseOutColor = "#FEFF99";
	var hoverColor = "#EEEEEE";
	$('#title, #title2').fadeIn(2000);
	$('#container, #menu_nav').fadeIn(2000);
	
	$('#title-desc, #main-content-inner').delay(1000).fadeIn(2000);
	$('#menu, #footer, #footer2, #enter').delay(2000).fadeIn(2000);
	
	$(".menu a").hover(
		function() {
			$(this).animate({color: hoverColor},200);
			//$(this).fadeOut("slow").animate({color: hoverColor},500).stop();
			//$(this).stop().animate({"opacity": "0"}, "slow");
		},
		/*function() {
			$(this).animate({color: mouseOutColor},500);			
		}*/
		function(){			
			$(this).animate({color: mouseOutColor},500).fadeTo('fast',1);
		}
		/*function(){
			$(this).stop().fadeTo(75,0.75).animate({color: hoverColor},75).fadeTo('fast',1);
		},
		function(){			
			$(this).animate({color: mouseOutColor},75).fadeTo('fast',1);
		}*/
	);
});	



