$(function() {
  // Simple slideshow
  slides = $('.slideshow')
  if (slides.length > 0) {
    slides.cycle({
        fx: 'fade'
      , speed: 800
      , timeout: 6000
      , after: function() {$('#caption').html(this.alt);}
    });

    // Remove links around thumbs and use cycle plugin to show the image
    $('#illustration > .thumbs > a > img').unwrap().click(function() {
      $('.slideshow').cycle('pause').cycle(parseInt($(this).attr('data-index')));
      return false;
    });
  }

  $('#listen')
    .mouseover(function() {
      var str = ($.browser.msie && ($.browser.version < 8.0)) ?
        "<bgsound id='embedded_sound' loop=-1 src='images/birds.wav'></bgsound>" :
        "<embed id='embedded_sound' loop='true' src='images/birds.wav' enablejavascript='true'></embed>";
      $('#foot').prepend().append(str);
    })
    .mouseout(function() {
        $('#embedded_sound').attr('src', '')
        $('#embedded_sound').remove();
    });
});

