jQuery(function () {
  $("form label").inFieldLabels();
  $("form input[type=text]:visible:first").focus(function() {
    this.select();
  });
});

$(document).ready(function(e){
  $(".finder-nav a").click(function(e){
    var targetForm = $(this).attr("href");
    $(this).siblings("a").removeClass("active");
    $(this).addClass("active");
    $(this).parent().siblings(".finder-form").hide();
    $(targetForm).show();
    return false;
  })

  $("#whitepages .finder-nav a").click(function(e){
    var tip = "#" + $(this).attr("href").split("-")[3] + "-tips"
    $("dl.tips").hide();
    $(tip).show();
    return false;
  })
});
