var HomePlayer = Class.create(
{
	initialize: function()
	{
		if(!swfobject)
		{
			alert('swfobject missing!');
			return;
		}

		var flashvars = {
			PlayListXML_path: '\'http://www.isartdigital.com/flash/player/playlists/pages/home.xml\'',
			_showMainBar: true,
			_skin: 'Default',
			_mainbarAutoHide: true,
			_mainbar_Alpha: 100,
			_mainbar_Top: '#333333',
			_mainbar_Bottom: '#000000',
			_loadSkin: false,
			_thumbnailCarousel: true,
			_fixedWidth: 400,
			_fixedHeight: 226,
			_videoProportions: true,
			_autoSize: true,
			_autoPlay: false,
			_loop: false,
			_bufferTime: 0,
			_buttonToolTips: false,
			_buttonsColor: '#FFFFFF',
			_volumeAudio: 60,
			_seekBar_color: '#ffa707',
			_showEmailButton: false,
			_showEmbedButton: false,
			_showFullscreenButton: true,
			_showPlayListButton: true,
			_showTimerButton: true,
			_showVideoPropButton: false,
			_showVolumeButton: true,
			_fontFamily: 'Arial',
			_fontSize: 10,
			_emailSubjectTitle: '',
			_emailBodyText: '',
			_buttonToolTipsList: ['stop','play','pause','played time / all time','sound volume','playlist','html code and link','send to friend','video properties','fullscreen mode'],
			_addexterpl: false,
			_plbgcolor: '#000000',
			_plwidth: 480,
			_plheight: 272,
			_ownerLogoIMGPath: 'logo.png',
			_ownerLogoAlpha: 0,
			_ownerLogoLink: '#',
			_rightClickMenuCopyright: 'VL',
			_rightClickMenuCopyrightLink: '#',
			_rightClickMenuCopyrightTarget: '_blank',
			_objectID: 'video'
		};

		var params = {
		  allowFullScreen: 'true',
		  wmode: 'transparent',
		  quality: 'high',
		  allowScriptAccess: 'always',
		  swliveconnect: true,
		  allowFullScreen: true,
		  swfversion: '8.0.0.0'
		};

		swfobject.embedSWF('http://www.isartdigital.com/flash/player/player.swf', 'video', '400', '225', '9.0.115', '/scripts/lib/swfobject/expressInstall.swf', flashvars, params);
	}
});

document.observe('dom:loaded', function(){
	new HomePlayer();
});
