$(document).ready(function(){

	// top navigation stuff
	$("#navigation ul li").click(function () {
		var href = $(this).contents("a").attr("href");
		document.location = href;
	});
	
	$("#navigation ul li").mouseover(function () {
		$("#navigation ul li").removeClass("selected");
		$(this).addClass("selected");
	});
	
	$("#navigation ul li").mouseout(function () {
		$("#navigation ul li").removeClass("selected");
	});
	
	// left navigation stuff
	$("ul.links li").click(function () {
		var href = $(this).contents("a").attr("href");
		document.location = href;
	});
	
	$("ul.links li").mouseover(function () {
		$(this).children("a").addClass("hoverstate");
	});
	
	$("ul.links li").mouseout(function () {
		$(this).children("a").removeClass("hoverstate");
	});
	
});
