jQuery(function(){
    $("#menu li").hover(
        function() {
            var sub = $(this).children("ul:first");
            //sub.fadeIn(150);
            sub.addClass("hover");
        },
        function() {
            var sub = $(this).children("ul:first");
            //sub.fadeOut(150);
            sub.removeClass("hover");
        }
    );
    
    $(".product-list .scrollable").scrollable({ 
        vertical:true,  
        next: '.next', 
        prev: '.previous',
        size: 3 
    });
    
    $(".learnmore-wrapper .scrollable").scrollable({ 
        vertical:true,  
        next: '.next', 
        prev: '.previous',
        size: 3 
    });
    
    $("#b-go").click(function(){
        $(this).parent("form").submit();
    });
    
    
    
    
    $("#news-content div.el:not(:last)").addClass("sep");
});