
$(document).ready(function() {
		
		//The dom is loaded
		
		/**
		* settings and variables
		*
		*/
		
		if(section == "home" || section == "media")
		{
			var flashvars = 
			{
				base_url 		: 	(typeof a.base_url == 'undefined') ? "" : a.base_url,
				locale 			:	(typeof a.locale == 'undefined') ? "" : a.locale,
				app_version	:	(typeof a.app_version == 'undefined') ? "" : a.app_version,
				section 			:	(typeof a.section == 'undefined') ? "" : a.section,
				game 			:	(typeof a.game == 'undefined') ? "" : a.game,
				
				clip1_path		: 	(typeof a.clip1_path == 'undefined') ? "" : a.clip1_path,
				clip2_path		: 	(typeof a.clip2_path == 'undefined') ? "" : a.clip2_path,
				clip3_path		: 	(typeof a.clip3_path == 'undefined') ? "" : a.clip3_path,
				clip4_path		: 	(typeof a.clip4_path == 'undefined') ? "" : a.clip4_path,
				
				clip1_title		: 	(typeof a.clip1_title == 'undefined') ? "" : a.clip1_title,
				clip2_title		: 	(typeof a.clip2_title == 'undefined') ? "" : a.clip2_title,
				clip3_title		: 	(typeof a.clip3_title == 'undefined') ? "" : a.clip3_title,
				clip4_title		: 	(typeof a.clip4_title == 'undefined') ? "" : a.clip4_title,
				
				hero1_path		: 	(typeof a.hero1_path == 'undefined') ? "" : a.hero1_path,
				hero2_path		: 	(typeof a.hero2_path == 'undefined') ? "" : a.hero2_path,
				hero3_path		: 	(typeof a.hero3_path == 'undefined') ? "" : a.hero3_path

			};
			
			var params = 
			{
				//loop : "false",
				menu : "false",
				quality : "high",
				scale : "noscale",
				//salign : "tl",
				//wmode : "transparent",
				bgcolor : "#000000"
				//seamlesstabbing : "false",
				//allowfullscreen : "false",
				//allowscriptaccess : "sameDomain",
				//base : base_url
			};
			
			var attributes = {};		
			
			/**
			* Embed swf files
			*
			*/
	
			// CONTENT
			switch(section)
			{
				case 'home':
					swfobject.embedSWF(a.base_url+"assets/swf/rhomeplayer.swf", "rhomeplayer", "954", "344", "8", a.base_url+"assets/swf/expressInstall.swf", flashvars, params);
					params['wmode'] = 'transparent';
					swfobject.embedSWF(a.base_url+"assets/swf/promos/myResistance_"+a.locale+".swf", "flashpromo", "521", "202", "8", a.base_url+"assets/swf/expressInstall.swf", flashvars, params);
					$('#flashpromo').click(function(){window.open(url);return false;});
					
				break;
	
				case 'media':
					swfobject.embedSWF(a.base_url+"assets/swf/rplayer.swf", "rplayer", "512", "344", "8", a.base_url+"assets/swf/expressInstall.swf", flashvars, params);
				break;
				
				default:
			};
			
		}
		
});

		function callExternalInterface(title, path)
		{
			var rplayer = document.getElementById("rplayer");
			rplayer.playClip(title, path );
		}


