$(function(){
$('#listDL').listnav({
includeNums: false,
noMatchText: 'Keine Eintr&auml;ge'
});
$('.demoTwo').listnav({
includeAll:false,
noMatchText:'There are no matching entries.'
});
$('#demoThree').listnav({
initLetter:'c'
});
$('#demoFour').listnav({
includeNums: false
});
$('#demoFive').listnav({
cookieName: 'ln-demo5',
onClick: function(letter){
alert('You clicked ' + ((letter == '_') ? '0-9' : letter.toUpperCase()) );
}
});
$('.demo a').click(function(){
alert('Links in this demo don\'t actually go anywhere');
return false;
});
});