    $(function(){ 
      $('#myList').listmenu({ 
        includeNums: false, 
        includeOther: false, 
        flagDisabled: true, 
        noMatchText: 'No items under this letter', 
        showCounts: false, 
        menuWidth: 783, 
        cols:{ 
          count: 4, 
          gutter: 15 
        }, 
        onClick:function($target){ 
         if($target.is('a')){           
		  window.location.href = $target.attr('href');
         } 
        } 
      }); 
    }); 
