$(function(){
    $('#bigbanner').slides({
        preload: true,
        preloadImage: '/img/loading.gif',
        play: 6000,
        pause: 5000,
        effect: 'slide',
        hoverPause: true
    });
    if( $('#bigbanner img').size() === 0){
        $('#bigbanner').hide();
    }

    $("#menu > ul > li")
    .mouseenter(function(){
        $(this).siblings("li").trigger("anotheropen");
        $("ul", this).stop(1,1).slideDown("fast");
    })
    .bind("mouseleave anotheropen", function(){
        $("ul", this).stop(1,1).delay(500).slideUp("fast");
    });

    $("#menu .active_sub").parents("li:last").find(">a").addClass("active");
    //when clicking menu items that have submenues, open submenue
    // $("#menu > ul > li > ul").parents("li").click(function(){
    //    $(this).trigger("mouseenter");
    // });
});

$(document).add(window).bind("load resize adjustlogo", function(){
    if( $(window).width() < 1120 ){
        $("body").addClass("width-lt-1100");
    }else{
        $("body").removeClass("width-lt-1100");
    }
})

