$(document).ready(function(){
	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).addClass('over'); //Add background color and image on hovered list item
	$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).removeClass('over'); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

	//set active nav
	var body_id = $("body").attr('id');
	var active_id = "#nav-" + body_id;

	$(active_id).addClass('active');
	
	$(".leftWrapper .nav-left-li2").hover(
		function(){ $(this).addClass('over'); },
		function(){ $(this).removeClass('over'); }
	);
	$(".leftWrapper .nav-left-li2-2").hover(
		function(){ $(this).addClass('over2'); },
		function(){ $(this).removeClass('over2'); }
	)
});