// click-menu.js

// when poput menu item clicked, show the menu
// when clicked again, hide the menu

(function($){

    $(document).ready(function(){
    
        $('#ProductsMenu').click(function(){
            // toggle the "show menu" class on its children?
            $(this).siblings('ul').toggleClass('sfShow');
            return false; // no follow link
        });
    
    });

})(jQuery);
