// JavaScript Document
$(function() {
		$(".list tr:nth-child(odd)").addClass("odd");
		$(".list tr:nth-child(even)").addClass("even");
       
		$("A.external").click( function() {
        	window.open( $(this).attr('href'), 'external_w' );
        	return false;
         });
		
		$('#providerList').listnav({ 	 
				includeAll: true, 
				flagDisabled: true, 
				 
				noMatchText: 'Nothing matched your filter, please click another letter.', 
				showCounts: true   
		});
			 
});
 