// JavaScript Document$(document).ready(function(){  $("div.sitemap").hover(  	function() {		$(this).find('h1').css("color","#000");		$(this).find('li a').css("color","#69a32f");	},	function() {		$(this).find('h1').css("color","#999");		$(this).find('li a').css("color","#aaa");	});	  var odd = true;  $("table.degreer").find("tr").each(function() {  	if(odd==true) {  		$(this).addClass("odd");		odd=false;	} else {		$(this).addClass("even");		odd=true;	}		var firstcell = $(this).find("td").get(0);	var secondcell = $(this).find("td").get(1);	if(secondcell) {		$(firstcell).css("width", "87%");		$(secondcell).css("width", "10%");	}	  });});
