$(document).ready(function(){
  /*
	if(document.cookie.match(/firsttime/))
	{		
		$("#mainbanner").show();
	}
	else
	{	
		$("#mainbanner").fadeIn(2000);
		document.cookie = "firsttime=false;max-age=" + 3600 + ";"
	}	
  */
  
  $("#content").fadeIn(1000);
  
	$(".navitem").hover(
		function()
		{
			$(this).animate({
				"backgroundColor": "#333333",
				"color": "red"
				},
				250
			);
			$(this).children("a").animate({
				"color": "red"
				},
				250
			);
			
		},
		
		function()
		{
			$(this).animate({
				"backgroundColor": "#000000",
				"color": "white"
				},
				500
			);
			$(this).children("a").animate({
				"color": "white"
				},
				500
			);			
		}
	);
});
