$(document).ready(function(){
	
	$('.block table').each(function(i){
		$(this).children('tbody').children('tr:odd').addClass('next');
	});
	$('.block').mousedown(function(){
		var id = $(this).attr('id').replace(/b/,'');
		$('.block').each(function(i){
			if (i == id)$(this).addClass('active');
			else $(this).removeClass('active');
		});
	});
	
	$('.opt_list li a.mn1').click(function(e){
		e.preventDefault();
		$('.opt_list li div').slideUp();
		$(this).parent().children('div').slideDown();
	});
});


$(window).resize(function(){
	
});

$(document).ready(function() {
   $(".mmenu li").hover(function() {//При наведении мыши будет выскакивать меню
      var child = $(this).children();//Смотрим всех дочерних элементов
         if(child[1] != undefined) {//Если в дочерних элементах два пункта вспомним первый у нас это ссылка то есть , а второй дочернее меню
            $(child[1]).fadeIn("slow");// Если есть 2й дочерний элемент то показываем его
        }
   });

$(".mmenu li").mouseleave(function() {//При уходе мыши будет убираться меню и таже история с нахождением подменю
   var child = $(this).children();
   if(child[1] != undefined) {
      $(child[1]).fadeOut("slow");
    }
 })
});
