$(document).ready(function(){
    $('a.but_terug').show();
    $('a.but_terug').click(function(e){
        e.preventDefault();
        history.go(-1);
    });
});