$(document).ready(function(){
	navHover();
})

function navHover(){
	$('#sidebar #nav a').hover(function(){
		$(this).parent().css({
			"background" : "#939362"
		})
	},function(){
		$(this).parent().css({
			"background" : "none"
		})
	});
}
