$(function() {
  $('#slideshow').css({ display: "block" });
  $('.pics li').css({display: "none"});
  
  $('#slideshow li:first').fadeIn(2500, function() {
    $('#slideshow').cycle(
    {
      fx: 'fade',
      timeout: 6500,//8000
      speed: 2500,//4000
      pager: '#slidenav'
    }
    );
  });


/*
$('#header-wrap').css("display", "none");

$('#header-handle')
  .css("cursor", "pointer")
  .click(function() {
    $('#header-wrap').slideToggle({
      animated: "easeInOutBounce",
      duration: 250
    });
  });
*/
});
