$(function() {
  // Adjust the loading area to fit the size of the images
  $('#slideshow-loading-container').css('height', '640px');
  // Put the loading image in the middle of the loading area
  $('#slideshow-loading').css('margin-top', '230px');

  $.imgpreload($($('#home-slideshow img').get(0)).attr('src'), function() {
    $('#slideshow-loading-container').hide();
    $('#home-slideshow').show();
    var slider = $('#home-slideshow').bxSlider({controls: false, auto: true});
    slider.find('img').click(function() {
      slider.goToNextSlide();
    });
  });
});
