/**
 * @author HP
 */
jQuery(document).ready(function(){


    //global vars  
    var searchBox = $(".searchfield");
    var searchBoxDefault = "alles over Italie...";
    
    searchBox.focus(function(){
        if ($(this).attr("value") == searchBoxDefault) 
            $(this).attr("value", "");
    });
    
    
});

