	$(document).ready(function()
	{
		$("#first a").hover(
			function()
			{
				$("#second a.left").addClass("hidden");
				if($(this).attr("id").length > 0)
				{
					$("#second a." + $(this).attr("id")).removeClass("hidden");
				}
				$("body").toggleClass("redraw");
			}
		);
		
		$("#header").hover(
			function()
			{
			},
			function()
			{
				$("#second a.left").addClass("hidden");
				$("#second a." + $("#first a.active").attr("id")).removeClass("hidden");
				$("body").toggleClass("redraw");
			}
		);
	});
