$(function() {
  $('#header h2').cycle({ 
	fx:'fade', 
	speed:  4000,
	delay: -4000 
  });
  $('#slideshow .frame').cycle({
     fx:     'fade',
     timeout: '100',
     pager:  '#nav',
     pagerAnchorBuilder: function(idx, slide) {
       // return sel string for existing anchor
       return '.photo-nav li:eq(' + (idx) + ') a';
     }
  });
});
