$(document).ready(function()
{
	$("#head h1").bind("click", function(){window.location = "/";});
	$("#primary-navigation li").bind("mouseover", 
	 function(){ 
		var id = $(this).attr('id');
		$("#primary-navigation li").each(function(i) {
			$(this).removeClass($(this).attr('id')+"-active");	
		});

	 	$(".secondary").hide();
		if(id == "home")
		{
			$("#primary-navigation").addClass("hover-inactive");
			$("#primary-navigation").removeClass("hover-active");			
		}
		else
		{
			$("#primary-navigation").removeClass("hover-inactive");
			$("#primary-navigation").addClass("hover-active");
		}
		$(this).addClass(id+"-active");
		$("#"+id+"-links").show();
	});
	$("#home").bind("mouseout", function(){$(this).removeClass("home-active");});
});