function swap(url,id) {
    document.getElementById(id).src = 'http://www.infofyt.com/images/' + url;
}

jQuery(document).ready(function(){
    var s = jQuery('#s');
    var t = "Zoeken..";
    if (s.val() == ''){
        s.val(t).bind("focus", function(){
            s.val('');
        }).bind('blur', function(){
            if (s.val('')) {
                s.val(t);
            }
        })
    }
    
    //attach listener to GetResponse forms
    jQuery('.wf-formTpl form').submit(function(){
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', 'UA-403980-12']);
        _gaq.push(['_trackPageview', "/advies/sendtogetresponse"]);
    })
});


