$(document).ready(function() {
 $("li", "#headings").click(function(elem) {
   $("li", "#headings").removeClass("selected");
   $(this).addClass("selected");
   var id = $(this).text().replace(/[ ]+/g, "").replace(/^(.)/, function(c){return c.toLowerCase()});
   $("div[id$=Search]", "#local").hide();
   $("#" + id).show();
   if (id == "peopleSearch") {
     $("#popular").hide();
   }
   else {
     $("#popular").show();
   }
 });
});
