jQuery(document).ready(function($) {
  $('#carousel').cycle({
    fx: 'fade',
    speed: 2500
  });


  //functionality for the guide modal window

  $('#guide_content div').hide(); // hide all
  $('#guide_content div:first-child').show(); //show the first panel
  $('#guide_nav li a').live('click', function(){
    var target = $(this).attr('href');
    $('#guide_content div').hide(); // hide all
    $(target).show(); // show the one we want    
  });

  //close the guide
  $('#close_guide').live('click', function(){
    $('#guideoverlay').hide();
    $('#wvguide').hide();
  });
  
  $('#viewMap').click(function(){
    guidemodal('#guide_map');
    return false;
  });
  $('#viewGuide').click(function(){
    guidemodal();
    return false;
  });

});

function guidemodal(panel) {
  jQuery('#guideoverlay').show();
  jQuery('#wvguide').show();
  var windowwidth = jQuery(window).width();
  var guidewidth = '939';
  var left = (windowwidth - guidewidth) / 2;
  jQuery('#wvguide').css('left',left);
  if (panel) {
    jQuery('#guide_content div').hide(); // hide all
    jQuery(panel).show(); // show the one we want
  }
}

