$(document).ready(function () {
    $('.searchtop').each(function () {
        if ($(this).val() == '') {
            var defaultText = 'Zoek vacatures...';
            $(this).val(defaultText);
            $(this).focus(function () {
                var userInput = $(this).val();
                //Check op wat er is ingevuld met het default zoekwoord, als het afwijkt maak dan het zoekveld niet leeg
                if (userInput == defaultText) { $(this).val(''); }
            });
            $(this).blur(function () {
                var userInput = $(this).val();
                //Check of het zoekveld leeg is
                if (userInput == '') { $(this).val(defaultText); }
            });
        }
    });
});
