/* Menus by Adam 2010*/

// Reseller Menu

$(document).ready(function() {

    $(" .resellers li ul ").css({ display: "none" });
    $(" .resellers li").click(function() { //When trigger is clicked...

        $(this).parent().find("ul.sub").fadeIn('fast').show(); //Drop down the subnav on click  

        $(this).parent().hover(function() {
        }, function() {
            $(this).parent().find("ul.sub").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up  
        });
    });
});

// Product Info Menu

$(document).ready(function() {

    $(" .productinfomenu li ul ").css({ display: "none" });
    $(" .productinfomenu li").click(function() { //When trigger is clicked...

        $(this).parent().find("ul.sub").fadeIn('fast').show(); //Drop down the subnav on click  

        $(this).parent().hover(function() {
        }, function() {
            $(this).parent().find("ul.sub").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up  
        });
    });
});
