// JavaScript Document


$(document).ready(
	function() {
		
		$(".sidenav li").hover(function(){
		$(this).find(".bg").addClass("hover");
		$(this).children(".sub").show();
		},function(){
		$(this).find(".bg").removeClass("hover");
		$(this).children(".sub").hide();
		});
		
		$(".navigation li").hover(function(){
		$(this).find("span").addClass("hover");
		$(this).children(".sub").show();
		},function(){
		$(this).find("span").removeClass("hover");
		$(this).children(".sub").hide();
		});
		
		
		$("tr:nth-child(even)").addClass("chet");
		
		
		
				
	});