$(function() {
    var sDefaultInput = "zoek op naam, plaats of zoekterm..";
    $('#map-search-form-input').focus(function(e) {
        if( $(this).val() == sDefaultInput) {
            $(this).val('');
            $(this).css('color', '#3B3B3B');
            $(this).css('font-style', 'normal');
        }
    });
    $('#map-search-form-input').blur(function(e) {
        if( $(this).val() == '') {
            $(this).val(sDefaultInput);
            $(this).css('color', '#707070');
            $(this).css('font-style', 'italic');
        }
    });        
});
