// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 9;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 45;
// -----------------------------------------------------------------------------





function meetTeam()
{


var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	// embed the flash movie
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0',
		'width', '1013',
		'height', '255',
		'src', '/flash/gallery',
		'quality', 'high',
		'pluginspage', 'http://www.adobe.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'transparent',
		'devicefont', 'false',
		'id', 'gallery',
		'bgcolor', '#ffffff',
		'name', 'gallery',
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', '/flash/gallery',
		'salign', ''
		); //end AC code
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<img src="/images/gallery_noflash.jpg" alt="Meet the team at greensplash" height="255" width="1014" />';
	document.write(alternateContent);  // insert non-flash content
}


}




function meetTeam2010()
{


var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	// embed the flash movie
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0',
		'width', '1013',
		'height', '255',
		'src', '/flash/galleryCurved',
		'quality', 'high',
		'pluginspage', 'http://www.adobe.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'window',
		'devicefont', 'false',
		'id', 'gallery',
		'bgcolor', '#cccccc',
		'name', 'gallery',
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', '/flash/galleryCurved',
		'salign', ''
		); //end AC code
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<img src="" alt="Meet the team at greensplash" height="255" width="1014" />';
	document.write(alternateContent);  // insert non-flash content
}


}