// Menu
var active = "none";

$(function()
{
	// Menu
	$("#primary-nav a").hover(function()
	{
		active = $(this).parent().attr("class");
		
		if(active != "menuactive")
			$(this).animate({
				color : "#2a7a87"
			});
	}, function()
	{
		active = $(this).parent().attr("class");
		
		if(active != "menuactive")
			$(this).animate({
				color : "#333333"
			});
	});
	
	// Image
	$("#contentRight div:first").css("opacity", "0");
	$("#contentRight div:last").css("opacity", "0");
	
	$("#contentRight div:first").animate({
		opacity : "1"
	}, "slow", "", content);
});

function content()
{
	// Image
	$("#contentRight div:last").animate({
		opacity : "1"
	}, "slow");
}
