var fade_speed = 1250.0

$(document).ready(function(){
  lets_get_this_party_started();
});

function lets_get_this_party_started() {
  $('.image_wrapper').eq(0).addClass("current_image").fadeIn(fade_speed);
  $(".image_wrapper").hover(
    function () {
      $(this).find(".image_description").fadeIn("medium");
    }, 
    function () {
      $(this).find(".image_description").fadeOut("medium");
    }
  );
  $('.site_images').cycle({ 
      fx:     'fade', 
      speed:   1000, 
      timeout: 2500
  }).cycle(
    "pause"
  ).hover(
    function() {
      $(this).cycle("resume");
    },
    function() {
      $(this).cycle("pause");
    }
  );
}

function change_image_to(image_id) {
  if (!($('.current_image').attr("id") == $(image_id).attr("id"))) {
    $('.current_image').removeClass('current_image').fadeOut(fade_speed);
    $(image_id).addClass("current_image").fadeIn(fade_speed);
  }
}