$(function(){        

    $('#mainnav li.mainnav_item').hover(function() {
          $(this).stop().animate({'height': 328, 'top': -116}, 400);
      }, function() {
          $(this).stop().animate({'height': 61, 'top': 0}, 400);
      });
    
    $('#mainnav li ul').each(function(){
        $(this).find('li').each(function(index) {
            $(this).hover(function() {
                $(this).parent().parent().find('.image img').removeClass('active');
                $(this).parent().parent().find('.image img:eq('+index+')').addClass('active');
            }, function() {
                $(this).parent().parent().find('.image img').removeClass('active');
                $(this).parent().parent().find('.image img:eq(0)').addClass('active');
            });
        });
    });
    
    
    $('#subnav li.subnav_item').hover(function(){  
        $(this).addClass('hover'); 
    }, function(){
        $(this).removeClass('hover');
    });
    
});

