$(document).ready(function() {
  $("#home-promo-tabs li").mouseover(function() {
    var current = $(this).attr("class");

    //Change body image and text
    $("#home-promo-body").children("div").hide();
    $("#home-promo-body ." + current).fadeIn();

    //Change tabs
    if (current == "body-1") $(this).parent().css("background", "url('/images/hiw-tab-nav.gif') 0px 0px");
    if (current == "body-2") $(this).parent().css("background", "url('/images/hiw-tab-nav.gif') 0px -98px");
    if (current == "body-3") $(this).parent().css("background", "url('/images/hiw-tab-nav.gif') 0px -196px");
    if (current == "body-4") $(this).parent().css("background", "url('/images/hiw-tab-nav.gif') 0px -292px no-repeat");
  });

  $("#quotes").quotator({
    speed : 5000,
    json : "/js/quotator_quotes.js"
  });
});
