function animalFlash()
{
	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=10,0,0,0', 'width', '292',	'height', '204', 'src', '../assets/animals', 'quality', 'high', 'pluginspage', 'http://www.adobe.com/go/getflashplayer', 'align', 'middle', 'play', 'true', 'loop', 'true', 'scale', 'showall', 'wmode', 'transparent', 'devicefont', 'false', 'id', 'animals', 'bgcolor', '#ffffff', 'name', 'animals', 'menu', 'true', 'allowFullScreen', 'false', 'allowScriptAccess','sameDomain', 'movie', '../assets/animals', 'salign', ''); //end AC code
	}
	else
	{  // flash is too old or we can't detect the plugin
		var alternateContent = '<img src="../images/animals.png" width="292" height="204" alt="Chicken, cow and pig" title="Chicken, cow and pig" />';
		document.write(alternateContent);  // insert non-flash content
	}
}
