$(document).ready(function() {
    $('#headerslide').cycle({
        fx: 'fade',
        speed: 4000,
        timeout: 20000,
        random: 1
    });


    $('#mapsearchbox input[name="search"]').val('Ich wohne in...');
    $('#mapsearchbox input[name="search"]').focusin(function() {
        var text = this.value;
        if (text == 'Ich wohne in...') {
            this.value='';
        } else {
            this.select();
        }
    });
    
    $('#mapsearchbox input[name="search"]').focusout(function() {
        var text = this.value;
        if (text == '') {
            this.value='Ich wohne in...';
        }
    });
    
});



