/* stripes speelronde */
$(function(){
	$("div.speelronde:even").addClass("striped");

});

/* XHTML Strict nieuwe pagina openen */


$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});
