function embedFlash(event) {
	
	if ( $('#flash-homepage').length > 0 ) {
		var params = {
			wmode: 'transparent'
		}
		swfobject.embedSWF('/flash/Homepage.swf', 'flash-object', '100%', '800', '9.0.0', 'expressInstall.swf', {}, params, {});
	}
	
	if ( $('#flash-product').length > 0 ) {
		var params = {
			wmode: 'transparent'
		}
		swfobject.embedSWF('/flash/Producten.swf', 'flash-object', '100%', '800', '9.0.0', 'expressInstall.swf', {}, params, {});
	}
	
	
	if ( $('#flash-moments').length > 0 ) {
	    // Document height is required for determing the 100% height of the Flash object
	    // Otherwise it will cut-off at the location where the scrollbar ends.
		var flashHeight = $(document).height();
		var params = {
			wmode: 'transparent'
		}		
		swfobject.embedSWF('/flash/ballen.swf', 'flash-object', '100%', flashHeight + 'px', '9.0.0', 'expressInstall.swf', {}, params, {});
	}
	
}

$(document).ready(embedFlash);
