/************************************/
/* Photo Animation                  */
/************************************/
var photoNumber = 1;
var NUM_PHOTOS = 6;

function animatePhotoTransition() {
  currentPhoto = $('#photo' + photoNumber);
  
  // find the next photo
  photoNumber++;
  if(photoNumber > NUM_PHOTOS)
    photoNumber = 1;
  nextPhoto = $('#photo' + photoNumber);
  
  // transition
  currentPhoto.fadeOut(500);
  nextPhoto.fadeIn(500);
  
  // and repeat
  setTimeout("animatePhotoTransition()", 4000);
}

setTimeout("animatePhotoTransition()", 4000);



/************************************/
/* Links Animation                  */
/************************************/
if(!jQuery.browser.msie) {
  $('#links').mouseenter(function(event) {
    $('#dots').fadeOut(270);
    $('#spotlight').fadeIn(350);
    $('ul').animate({top: "18px", opacity: 1.0}, 270);
  });

  $('#links').mouseleave(function(event) {
    $('#dots').fadeIn(350);
    $('#spotlight').fadeOut(300);
    $('ul').animate({top: "10px", opacity: 0.0}, 300);
  });
}
