$(function(){
  $("a[rel^='prettyPhoto']").prettyPhoto({
    theme: 'light_square'  
    });
  $(".screenshots .carousel").jcarousel({
    wrap: 'circular'
    });
  $(".carousel img").tipsy({
    gravity: 's',
    fade: true,
    title: 'alt',
    offset: 20
    });
  // Set starting slide to 1
  var startSlide = 1;
  // Get slide number if it exists
  if (window.location.hash) {
    startSlide = window.location.hash.replace('#','');
  }
  // Initialize Slides
  $('#header').slides({
    container: 'featured',
    play: 5000, // Get the starting slide
    generateNextPrev: true,
    hoverPause: true,
    start: startSlide,
    preload: true,
    preloadImage: '../images/loading.gif',
    animationComplete: function(current){
      // Set the slide number as a hash
      window.location.hash = '#' + current;
    }
  });
});


