/* <[CDATA[ */
var button_on = new Image();
var button_go = new Image();
button_on.src = 'layout_img/verstuur.gif';
button_go.src = 'layout_img/verstuur_hover.gif';
onload = function() {
    var sb = document.getElementById('verstuur');
    if(sb) {
        sb.onmouseover = function() { this.src='layout_img/verstuur_hover.gif'; }
        sb.onmouseout = function() { this.src='layout_img/verstuur.gif'; }
        sb.onfocus = function() { this.src='layout_img/verstuur.gif'; }
        sb.onblur = function() { this.src='layout_img/verstuur.gif'; }
        sb.onclick = function() { this.src='layout_img/verstuur_hover.gif'; }
    };
};
/* ]]> */