$(document).ready(function(){
    /*
     разукрашиваем таблицы
     */
    $("table tr:first-child").addClass("top");
    
    $("table tr:last").addClass("bottom");
    
    $("table tr:nth-child(even)").addClass("second");
    
    $("table tr th:first-child").addClass("first");
    
    $("table tr th:last-child").addClass("last");
    
    $("table tr th:nth-child(odd)").addClass("odd");
    
    $("table tr th:nth-child(even)").addClass("even");
    
    $("table tr td:last-child").addClass("last");
    
    $("table tr td:first-child").addClass("first");
    
    $("table tr td:nth-child(odd)").addClass("odd");
    
    $("table tr td:nth-child(even)").addClass("even");
    /*
	разворачиваем меню
	*/
    $("ul.menu li").click(function(){
        $("ul.submenu").slideToggle("def");
		$(this).toggleClass("scrolled");
    })
    /*
	изменяем вид страницы превью-картинок
	*/
    $("div.view").click(function(){
        $("div.right").toggleClass("grid");
        $(this).toggleClass("full_ico");
    })
	
	/*
     присваеваем класс active при клике на пункте меню
     */
    $("li").click(function(){
        $(this).addClass("active");
        $(this).siblings("li").removeClass("active");
    });
    
    
});

