function bioLanding(_teams)
{
	/* === PROPERTIES ========================================================================================================= */
	var _expressInstallPath = null;
	var _teamsArray = _teams;
	
	/* === OBJECTS ============================================================================================================ */
	swfObject = null;
	
	/* === PUBLIC METHODS ===================================================================================================== */
	this.init = init;
	
	/* === PUBLIC METHOD DEFINITIONS ========================================================================================== */
	
	function init()
	{
		// hack for Firefox Flash 8 first instance of swfObject detection
		loadSwf("/assets/swf/bioLanding/BioLanding.swf", "noFlashMessage", 10, 10, "9.0.0");
		
		// load the mascot video SWFs
		loadMascotSignatureVideos();
	}
	
	/* === PRIVATE METHOD DEFINITIONS ========================================================================================= */
	
	function loadSwf(swfUrl, targetId, width, height, version, flashvars, params, attributes)
	{
		swfobject.embedSWF(swfUrl, targetId, width, height, version, _expressInstallPath, flashvars, params, attributes);
	}
	
	/*
	 * Looks for mascot.
	 */
	function loadMascotSignatureVideos()
	{
		var _attributes = null;
		var _flashvars = null;
		var _height = null;
		var _i = null;
		var _params = null;
		var _swfUrl = null;
		var _targetId = null;
		var _version = null;
		var _width = null;
		var _mascot = null;
		var _containerSWFIdPrefix = "bioSwf_";
		var _containerSWFId = "";
		var _containerSWFPath = "/swf/bioLanding.swf";
		
		for (_i = 0; _i < _teamsArray.length; _i++)
		{
			_mascot = _teamsArray[_i];
			_containerSWFId = _containerSWFIdPrefix + (_i + 1);
			
			_attributes = { id: _containerSWFId, name: _containerSWFId };
			_flashvars = {
				videoPath: _mascot.pathPrefix + _mascot.videoPath
			};
			_height = 180;
			_params = { allowscriptaccess: "always",wmode: "transparent" };
			_swfUrl = _mascot.pathPrefix + _containerSWFPath;
			_targetId = _containerSWFId;
			_version = "9.0.0";
			_width = 166;
			
			loadSwf(_swfUrl, _targetId, _width, _height, _version, _flashvars, _params, _attributes);
		}
	}
}