google.load("maps", "3", {other_params: "sensor=false"});

$(document).ready(function(){
    // Find stat boxes and steal the click
    $('.statBox').click(function(e){
        var element = e.target;
        if(!$(element).hasClass('.statBox')){
           element = $(element).parent('.statBox');
        }
        window.location = element.find('a').attr('href');
    });
    $('#searchTerm').focus(function(){
        if(this.value=='Search Pubs, Beers, Users'){
            this.value='';
        }
    }).blur(function(){
        if(this.value.length==0){
            this.value='Search Pubs, Beers, Users';
        }
    });
});
