$(document).ready(function() {
    try {
        $("div.page-content a img").parent().fancybox(); 
        
        /* Put standard text in input-fields of newsletter and call me now (defaultValue for FF and value for IE) */
        $("div#newsletter_box input[name='name']").attr('defaultValue', 'Naam').attr('value', 'Naam').bind('focus blur', function() {
            clearText(this);
        });
        $("div#newsletter_box input[name='email']").attr('defaultValue', 'E-mail').attr('value', 'E-mail').bind('focus blur', function() {
            clearText(this);
        });
        $("div#call_me_box input[name='phone_number']").attr('defaultValue', 'Uw Telefoonnummer').attr('value', 'Uw Telefoonnummer').bind('focus blur', function() {
            clearText(this);
        });

        $("#search").bind("submit", function() {
            q = $(this).children("input[name=q]").val();
            
            if ((q == "") || (q == "zoeken")) {
                return false;
            }
            return true;
        });

        $("div#recent_work div").cycle();
    } catch(e) {};
});

