$(document).ready(function() {
 $("#header").click(function(){          
     window.location.replace('/');
 });
});
function lookup(){
	$("#results").html('<img src="/static/img/loader.gif"/>');
   $.post("/lookup/",$("#listed_lookup").serialize(),
     function(data){
       $("#results").html(data);
     }, "html");
     $("#results").fadeIn("slow");
 }

