/**
 * COPYRIGHT C OKINTERACTIF, ALL RIGHTS RESERVED.
 * This file cannot be used, copied, reproduced, altered or transmitted
 * by any means without proper written authorization from OkInteractif.
 * http://www.okinteractif.com
 */

//{CLASS /////////////////////////////////
var Main = 
{
	//{CONSTANTS ///////////////////////////////
	
	
	
	//}END-CONSTANTS ///////////////////////////
	
	//{PROPERTIES ///////////////////////////////
	
	
	
	//}END-PROPERTIES ///////////////////////////
	
	init : function()
	{
		Main.addFlash();
	},
	
// Flash management --------------------------------------------------
	addFlash : function()
	{
		var flashData = {
			file: 'main.swf',
			container: 'flash',
			size: {
				width: 	999,
				height: 650
			},
			version: '10.0.22',
			expressInstall: 'scripts/js/lib/swfobject/expressinstall.swf',
			vars: {
			},
			params: {
				menu: false,
				base: ''
			},
			attributes: {
				
			}
		}
		
		swfobject.embedSWF(
			flashData.file, 
			flashData.container, 
			flashData.size.width, 
			flashData.size.height, 
			flashData.version, 
			flashData.expressInstall, 
			flashData.vars, 
			flashData.params, 
			flashData.attributes
		);
		
		swffit.fit('flash');
	}
}
