// Passwords 
// Inter A - rockandroll - de32d03fbce9eee04da646b8dd906abe
// Inter B - swingtime - 61146c6f49206b050663085ce2ee9141
// Inter C - dancemusic - 522b3abed8dbe17719b7c4924881efad
// Inter D - polka - 7e7cb40bdbfd8d4c512eda43e748b3ba
// Inter E - elvis - 8b28c7134887bb938e1ffed68456ffb2
// Inter P - ourservices - d0f8583fd0cc83bd5971b0e64ac926e5

function prompt_for_password(hash) {
  password = prompt("Enter the password:","");
  if(hex_md5(password) != hash) {
    alert("Invalid password.");
    return false;
  }  
  return true;
}

$(document).ready(function() {
  $("#header .locations").text($("#header .locations").text());
  $(".instant-quote").after($("<div class=\"quote\"></div>").load("/ajax/instant-quote.html").hide());
  $(".instant-quote").hover(
    function () {
      $(this).next(".quote").show();
    }, 
    function () {
      $(this).next(".quote").hide();
    }
  );
  
});