$(document).ready(function(){
    /* NAV */
    $('#nav ul.ul-level-2').css('opacity', '0.9');
    
    $('#nav li.li-level-1').hoverIntent(function(){
        $(this).children('a').addClass('in-path');
        $(this).children('ul').css('display', 'block');
    }, function(){
        $(this).children('a').removeClass('in-path');
        $(this).children('ul').css('display', 'none');
    });
    
    /* HEADER GALLERY */
    $('#header-gallery').cycle();
    
    /* HIGHLIGHTS */
    $('.images .more').hover(function(){
        $(this).parent().css('margin-top', '-92px');
    }, function(){
        $(this).parent().css('margin-top', '0');
    });
    
    $('.highlight h2 .more').hover(function(){
        $(this).parent().parent().children('.images-wrap').children().css('margin-top', '-92px');
    }, function(){
        $(this).parent().parent().children('.images-wrap').children().css('margin-top', '0');
    });
    
    /* PRODUCT TABLE */
    $('.ec-table tr:even').css('backgroundColor', '#eee');
    $('.ec-table tr:odd').css('backgroundColor', '#ddd');
    
    $('.fancybox').fancybox();
    
    /* SEARCH */
    /*
     $('#search-form').hide();
     $('.search-image').bind('click', function(){
     $('.search-image').addClass('selected');
     $('#search-form').fadeIn('slow');
     });
     */
});

