// Nothing here (custom.js)
jQuery(document).ready(function($){
    //  $('ul', '#wpm1').each(function(){
    //      $(this).prev('a').hover(
    //          function(){
    //              $(this).next('ul').attr('style', 'display:block;left:0;');
    //              $(this).next('ul').addClass('wpmhover');
    //          },
    //          function(){
    //              $(this).next('ul').attr('style', 'display:none;');
    //              $(this).next('ul').removeClass('wpmhover');
    //          }
    //      );
    //  });

});