// the flash modal
if (document.getElementById('modal')) {
	document.vtinit = false;
	document.flash_modal = new Control.Modal($('modal'), {
		fade: true,
		fadeDuration: 0.25,
		overlayOpacity: 0.85,
		className: 'modal',
		width: 480,
		height: 380,
		afterOpen: function() {
			if (!document.vtinit) {
				document.player = swfobject.embedSWF('/plugins/FlowPlayer_Plugin/flowplayer/FlowPlayerLight.swf', 'placeholder', 480, 360, '8.0.0', false, {}, {
					flashvars: "config={ autoPlay: false, videoFile: '"+$F('virtual_tour_url')+"', initialScale: 'scale', loop: false }"
				});
				$('close_modal').observe('click', function() { document.flash_modal.close(); });
				document.vtinit = true;
			}
		}
	});
	$('area_virt_tour').observe('click', function() { document.flash_modal.open(); });
}
