
$(document).ready(function() {
	if ($('#carrousel').length > 0 && $('#carrousel img').length == 0) {
    	$('#logo_foto_container').append('<div id="headerfoto"></div>');
    	$('#carrousel').hide();
    }

    // BUTTON BACK
    $('a.but_terug').show();
    $('a.but_terug').click(function(e){
        e.preventDefault();
        history.go(-1);
    });

});
