
	var AssetLocation			= 	'/_assets/videos/';
	var VideoWidth				= 	'384';
	var VideoHeight				= 	'216';
	var DefaultVideo			= 	'philosophy';
	var Container					=		'videos';

	var VideoData = {
		philosophy : { 
				video 				: 'OURPHILOSOPHY512K.FLV',
				posterframe 	: 'OURPHILOSOPHY512K_pframe.jpg'
		}
	}

	
	var FlashVars = {
		//initialURL: escape(document.location),
		file								: 			AssetLocation + VideoData[DefaultVideo].video,
		image								:				AssetLocation + VideoData[DefaultVideo].posterframe,
		bufferlength				:				"20",
		width								:				VideoWidth,
		height							:				VideoHeight
	};
	
	var Params = {
		bgcolor							:				"#000000",
		allowfullscreen			:				"true"
	};

	var Attributes = {
		id									:				'cssvideo'

	};


function videosetup() {
	
	// Set default video
			swfobject.embedSWF("/_assets/flvplayer.swf",
												 Container,
												 VideoWidth,
												 VideoHeight,
												 "8",
												 "/_assets/expressInstall.swf",
												 FlashVars,
												 Params,
												 Attributes
												);

}



	//initialize the code
	window.addEvent('domready', videosetup);


