$(document).ready(function() {
  $('.fadein img:gt(0)').hide();
  
  $("#sidebar .upper_section").mouseenter(function() {
    $(this).addClass("hover");
  }).mouseleave(function() {
    $(this).removeClass("hover");
  });
  
  // Hide all but the first
  $('#large_pictures img:gt(0)').hide();
  
  $("#flashes").momoAnnounce();
});

// wait until images have loaded before starting cycle
$(window).load(function() {
  $("#large_pictures").after('<div id="large_pictures_navigation">').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 5000, 
    pager:  '#large_pictures_navigation', 
    delay: -2000,
    before: function(curr,next,opts) {
      var slide = $(next);
      var w = slide.outerWidth();
      var h = slide.outerHeight();
      slide.css({
        marginTop: (330 - h) / 2,
        marginLeft: (520 - w) / 2
      });
    }
  });
  
  $("#slideshow .fadein").cycle({timeout: 5000});
});
