/*
 *  Removes the "Zip Code" text whenever the "Where To Buy" text box at the top of each page is hovered over.
 */

$(document).ready(function(){

  var msg = $("#locator").val();

  $("#locator").focus(function(){
    if ($(this).val() == msg)
      $(this).val("");
  });

  $("#locator").blur(function(){
    if ($(this).val() == "")
      $(this).val(msg);
  });

});
