showCoverFlow = function (){

	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

	// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		
		AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','720','height','360','title','gameController','src','/wp-content/themes/UpForItJuniors/images/flash/coverflow/gameController','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','/wp-content/themes/UpForItJuniors/images/flash/coverflow/gameController' ); //end AC code
		
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<div class="text_content">'
		+ '<h1>Welcome to Up For It Juniors</h1>'
		+ '<p>This site requires the Adobe Flash Player 8 to play the games. We have detected that you don\'t have the required player installed or your version is out of date.</p>'
		+ '<p>You can use the following link to download and install the latest version of the Flash player for your browser. <a href=http://www.adobe.com/go/getflash/>Get Flash &raquo;</a>.</p>'
		+ '</div>';
		document.write(alternateContent);  // insert non-flash content
	}
}

