(function() {

    $(document).ready(function() {

        //exception home
        $("#shopaward:not(:empty)").each(function(){
            $(this).show();
            $('#mouse').hide();
        });


        $.validator.messages.required = 'Dit veld is verplicht';

        $('#addressfield').focus(function() {
            if ($(this).val() == 'Vul uw adres in en bereken uw route') {
                $(this).val('');
            }

        });
        
        $('#addressfield').blur(function() {
            if ($(this).val() == '') {
                $(this).val('Vul uw adres in en bereken uw route');
            }
        });

       //$('#header li').hide();
       FadeText($('#header li:first'));

    });

   $('#ad_box').cycle({
            fx: 'scrollUp',
            timeout: 5000,
            speed: 750,
            slideExpr:'.bannerGroup' 
    });

})();

function FadeText(elem) {
    elem.fadeIn('slow')
        .delay(2000)
        .fadeOut('slow', function() {
            if (elem.next().length > 0) {
                FadeText(elem.next());
            }
            else
            {
                FadeText(elem.siblings(':first'));
            }
        });
}

