$(document).ready(function(){
	$("#menu li").hover(function(){
		$(this).find("ul:first").show();
		$(this).addClass("act");
	}, function(){
		$(this).find("ul:first").hide();
		$(this).removeClass("act");
	});
	
	var height = $("body").height();
	height = height - $(".b-menu").height() - $(".b-flash").height() - $(".b-footer").height() - 62;
	$(".tb-main").height(height);



$(".mytable tr:nth-child(odd)").addClass("odd");



});

