$(document).ready(function() {
  $(".tour-element").hide();

  $("area").click(function() {
    $(".tour-element").hide();
    $($(this).attr("href")).show().scrollTop();
  });
  $("area").mouseenter(function() {
    var title = $(this).attr("title");

    if (title.indexOf("Navigation Screen") > -1) {
      $("#home-screen-description strong").html("Navigation Screen");
      $("#home-screen-description p").html("Click to view a larger view of the home screen.");
    } else {
      $("#home-screen-description p").html("Click to view a demonstration of this screen.");
      $("#home-screen-description strong").html(title);
    }

    var arr = ["Pickup Orders","Purchase Orders","Vendor Admin","Vendors","Count Sheets","Receiver","Purchase Status","Navigation Screen Bottom"];

    if ($.inArray(title,arr) > -1) {
      $("#home-screen-description").removeClass("bottom");
      $("#home-screen-description").addClass("top");
    } else {
      $("#home-screen-description").addClass("bottom");
      $("#home-screen-description").removeClass("top");
    }

    $("#home-screen-description").stop(true,true).slideDown("slow");
  });
  $("#home-screen-teaser").mouseleave(function() {$("#home-screen-description").stop(false,true).slideUp();});
  $("#home-screen-description").mouseenter(function() {$("#home-screen-description").stop(false,true).slideUp();});
});

