$(document).ready(function () {
	
	var tableTH = 0;
	$("table.table tr").each(function (i) {
		if ($(this).children().get(0).tagName == "TH")
		{
			tableTH += 1;
			return;
		}
		if (($("table.table tr").index(this) +1 +tableTH)%2 == 0)
			$("td", this).css("background", "#EEEEEE");
	});

	
	$("#menuset a").hover(
			function (){ /*$("#menuset a ").css("background-position", "0 0"); $(this).css("background-position", "0 -33px");*/ 
				
				if ($(this).hasClass("sel"))
					return;
				
				$("#menuset a.sel").removeClass("sel"); $(this).addClass("sel");
				$("#submenus div:visible").hide();
				$("#submenus div").eq($("#menuset a").index(this)).show();
			},
			function (){  });
	
});
