<!-- Begin
// USE lowercase FOR ALL OPTIONS


var flashwC		= "450"		 // WIDTH OF THE FLASH
var flashhC		= "340"		 // HEIGHT OF THE FLASH
var flashColor		= "FFFFFF"	 // BACKGROUND COLOR
var flashmode		= "transparent"	 // FLASH WMODE | window | opaque | transparent |
var showflash		= "yes"		 // SHOW FLASH & DETECTION TEST MODE | yes | no |




// COPYRIGHT 2011 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law
// FLASH LOGO WITH DETECTION VER 3.0
// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

var alternateContent = '<table cellpadding="0" cellspacing="8" border="0"><tr><td>'
  			+ '<img src="flash/image1.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image4.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image7.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image10.jpg" width="100" height="100" border="0" class="borders"><br></td></tr><tr><td>'
  			+ '<img src="flash/image2.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image5.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image8.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image11.jpg" width="100" height="100" border="0" class="borders"><br></td></tr><tr><td>'
  			+ '<img src="flash/image3.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image6.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image9.jpg" width="100" height="100" border="0" class="borders"><br></td><td>'
  			+ '<img src="flash/image12.jpg" width="100" height="100" border="0" class="borders"><br>'
  			+ '</td></tr></table>'
			;
   if (showflash == "yes") {
// Version check based upon the values entered in "FLASH Globals" in javascripts.js
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(
				"src", "imagechanger.swf",
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"id", "imagechanger",
				"quality", "high",
				"wmode", flashmode,
				"bgcolor", "#"+flashColor,
				"name", "imagechanger",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else {  // flash is too old or we can't detect the plugin
document.write(alternateContent);  // insert non-flash content
}
}
else {
document.write(alternateContent);  // insert non-flash content
}
// -->
