function goback() {
    history.go(-1);
}

$(document).ready(function() {
                
    $('.toggle-plaats').each(function(){
    
        $(this).data('label', $(this).html());
    });
    
    if ($("a[rel^='prettyPhoto']").length>0) {
    	$("a[rel^='prettyPhoto']").prettyPhoto({
            theme: 'light_rounded',
        });
    }
   
    $('.toggle-plaats').toggle(function() {
        $(this).parent().find('.hidden').css('display','block');
        $(this).html('Sluiten');
    }, function() {
        $(this).parent().find('.hidden').css('display','none');
        $(this).html($(this).data('label'));
    });
});
