
$(document).ready(function() {
	$('#topplaat').hide();
	$('a.thumblink').click(function(event){
        event.preventDefault();
        var str = this.href;
        document.getElementById('topplaatimg').src = str;
        //$('#topplaat').show("slow");
        $('#topplaat').show();
        return false;
    });
    $('#topplaatimg').click(function(event){
        event.preventDefault();
        //$('#topplaat').hide("slow");
        $('#topplaat').hide();
        return false;
    });
    
});