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




var flashwC		= "405"		 // WIDTH OF THE FLASH
var flashhC		= "125"		 // 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="0" border="0" width="'+flashwC+'" height="'+flashhC+'"><tr><td align="right" width="135" class="imagewidth"><img src="/alt/flash/image1.jpg" border="0" width="125" height="125" alt="Image"><br></td><td align="right" width="135" class="imagewidth"><img src="/alt/flash/image2.jpg" border="0" width="125" height="125" alt="Image"><br></td><td align="right" width="135" class="imagewidth"><img src="/alt/flash/image3.jpg" border="0" width="125" height="125" alt="Image"><br></td></tr></table>';

document.write('<table cellpadding="0" cellspacing="0" border="0" bgcolor="'+flashColor+'" width="'+flashwC+'" height="'+flashhC+'"><tr><td>');
   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", "alt/imagechanger.swf",
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"id", "alt/imagechanger",
				"quality", "high",
				"wmode", flashmode,
				"bgcolor", "#"+flashColor,
				"name", "alt/imagechanger",
				"allowScriptAccess","sameDomain",
				"type", "alt/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
}
document.write('</td></tr></table>');
// -->
