jQuery.noConflict()(function($){
  
  // Set map actions
  $("map area").bind("mouseover", function(e) {
  
    // Hide others
    $("table.tooltip").css({ "display":"none" });
    
    // Show tooltip
    var tooltip = $("#" + $(this).attr("alt"));
    tooltip.css({ "display":"block" });
  });  
  
  $("map area").bind("mouseout", function(e) {
    $("#" + $(this).attr("alt")).css({ "display":"none" });
  });
  
  $("table.tooltip").bind("mouseout", function(e) {
    $(this).css({ "display":"none" });
  });  
  
  $("table.tooltip").bind("mouseover", function(e) {
    $(this).css({ "display":"block" });
  });  
  
  
});

