function startTrailer() {
	
	/* Set the dimensions of the video */
	
	var iVideoWidth = 650;
	var iVideoHeight = 520;
	
	/* Create overlay and add to DOM */
	
	var oOverlay = new Element('div').setProperty('id', 'overlay').setOpacity(0.7)
		.setStyles({
			'top': window.getScrollTop(),
			'height': window.getHeight(),
			'width': window.getWidth()
		})
		.addEvent('click', function() {
			$('popup').remove();
			$('overlay').remove();
			return false;
		});
	
	oOverlay.inject(document.body);
	
	/* Create popup */
	
	var oPopup = new Element('div').setProperty('id', 'popup')
		.setStyles({
			'top': (window.getHeight() - iVideoHeight - 75)/2 + window.getScrollTop(),
			'left': (window.getWidth() - iVideoWidth - 75)/2,
			'width': iVideoWidth,
			'height': iVideoHeight
		});
	
	/* Create popup|close */
	
	var oPopupClose = new Element('div')
		.setProperties({
			'id': 'popupClose',
			'title': 'Sluit de video'
		})
		.addEvent('click', function() {
			$('popup').remove();
			$('overlay').remove();
			return false;
		});
	
	/* Create popup|content */
	
	var oPopupContent = new Element('div').setProperty('id', 'popupContent');
	
	/* Merge popup elements and add to DOM */
	
	oPopup.adopt(oPopupClose);
	oPopup.adopt(oPopupContent);
	
	oPopup.inject(document.body);
		
	/* SWFObject code */
	
	this.flashvars = {
		
		file: '../movies/Sequence 1_1Mbps.flv',
		type: "flv",
		width: iVideoWidth,
		height: iVideoHeight,
		autostart: true
	},
	
	this.params = {
		
		menu: "false",
		allowfullscreen :"true"
	},
	
	this.attributes = {
		
		id: 'demo',
		name: "demo"
	}
	
	swfobject.embedSWF("flash/mediaplayer.swf", "popupContent", iVideoWidth, iVideoHeight, "9.0.0", "flash/expressInstall.swf", this.flashvars, this.params, this.attributes);
}