$(function() {
  $("#slideshow").css('height', $("body").width() * 475 / 1340);
  $("#sound-switch").css('display', 'block');
  var i = 0;
  var imgs = $("#slideshow img");
  setInterval(function() {
    if (i == 3) next = 0;
    else next = i + 1;
    $(imgs[i]).fadeOut('slow');
    $(imgs[next]).fadeIn('slow');
    if (++i > 3) i = 0; 
  }, 8000);
  $(window).resize(function() {
    $("#slideshow").css('height', $("body").width() * 475 / 1340);
  });
});
