$(document).ready(function() {
		
	$(".fancyboxImg").fancybox({'overlayShow': true});
  $('#rotator').cycle({fx:'fade', speed:2000, timeout: 4000}); 
  
  var initLetterForNav = '';
  if(document.location.hash == '') {
    initLetterForNav = 'a';
  } else {
    initLetterForNav = document.location.hash.replace('#','');
  }
 
  
  $('#myList').listnav({
    initLetter: initLetterForNav,
    includeAll: false,
    showCounts: false, 
    prefixes: ["'t",'De'],
    onClick: function(letter){ document.location.hash = letter; }
  });
});
