$(function()
{
	// Menu
	$("#primary-nav a").hover(function()
	{
		$(this).stop().animate({
			color : "#cccccc"
		});
	}, function()
	{
		$(this).stop().animate({
			color : "#000000"
		});
	});
	
	// Submmenu
	$("#menu li ul").css("opacity", "0");
	
	$("#menu li").hover(function()
	{
		$(this).find("ul").css("display", "block");
		
		$(this).find("ul").stop().animate({
			"opacity": "1"
		}, "slow");
	}, function()
	{
		$(this).find("ul").stop().animate({
			"opacity": "0"
		}, "slow", "", function()
		{
			$(this).css("display", "none");
		});
	});
	
	// delete last row
	$("#menu li ul li:last").css({"opacity" : 0});
	
	// Content
	$("#content").css("opacity", "0");
	
	$("#content").animate({
		opacity : "1"
	}, "slow");
});