function printPage() {
	if (window.print)
		window.print()
	else
		alert("Sorry, your browser doesn't support this feature.");
}

function init() {
    detect_flash();
    load_flash('flesWit', 'swf/fles_wit.swf', 135, 415, 8.0);
	load_flash('flesRood', 'swf/fles_rood.swf', 135, 415, 8.0);
	load_flash('flesRose', 'swf/fles_rose.swf', 135, 415, 8.0);

	if ($('#wkwijn').length) {
		load_flash('logoAnimatie', 'swf/Animatie_mannetje_31-05-10_LOS.swf', 254, 275, 8.0);
	} else {
		load_flash('logoAnimatie', 'swf/logo.swf', 254, 275, 8.0);
	}
}

/* SHORT GENERIC ONLOAD BY BROTHERCAKE
----------------------------------------------------------------*/
if(typeof window.addEventListener != 'undefined') {
	window.addEventListener('load', init, false);
} else if(typeof document.addEventListener != 'undefined') {
	document.addEventListener('load', init, false);
} else if(typeof window.attachEvent != 'undefined') {
	window.attachEvent('onload', init);
}