$(document).ready(function() {
	if($.flash.available) {
		$('#wrapper').flash({
			swf: 'LeoDeWijs.swf',
			width: 960,
			height: 590,
			params: {
				"quality": "high",
				"scale": "noscale",
				"allowFullscreen": "true"
			}
		});
	} else {
		$('#wrapper').html('<img src="noflash.jpg" />');
	}
});