<!--
function myGetIfMobileDevice(){
	var device = navigator.userAgent.toLowerCase();
	if (device.indexOf("mobile") == -1 ){
		return false;
	} else {
		return true;
	}
}
var isMobile = myGetIfMobileDevice();
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion && isMobile == false) {  // if we've detected an acceptable version
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
	} else {
		// embed the flash movie
		document.write('<div style="position: absolute; top: 0px; left: 0px; width: 100%; z-index: 199;">');
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
			'width', '980',
			'height', '620',
			'src', 'flash/Index',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'false',
			'scale', 'noborder',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'Index',
			'bgcolor', '#0072ae',
			'name', 'Index',
			'menu', 'false',
			'allowScriptAccess','sameDomain',
			'movie', 'flash/Index',
			'salign', 'lt'
			); //end AC code
		document.write('</div>');
	}
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div id="TopNav">'
	+ '<div style="position: absolute; top: 15px; left: 10px;">'
	+ '<a href="about.shtml" class="TopNavButtonsIndex">home</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 15px; left: 153px;">'
	+ '<a href="about.shtml" class="TopNavButtonsIndex">about</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 15px; left: 295px;">'
	+ '<a href="portfolio/marketing/movie.shtml" class="TopNavButtonsIndex">portfolio</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 15px; left: 452px;">'
	+ '<a href="services.shtml" class="TopNavButtonsIndex">services</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 15px; left: 608px;">'
	+ '<a href="testimonials.shtml" class="TopNavButtonsIndex">testimonials</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 15px; left: 785px;">'
	+ '<a href="contact.shtml" class="TopNavButtonsIndex">contact</a><br/>'
	+ '</div>'
	+ '</div>'
	+ '<div id="LowerNav">'
	+ '<div style="position: absolute; top: 12px; left: 130px; width: 150px;">'
	+ '<a href="portfolio/marketing/IMAX.shtml" class="WhiteRO">marketing communications</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 12px; left: 285px; width: 150px;">'
	+ '<a href="portfolio/branding/balance.shtml" class="WhiteRO">branding + identity</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 12px; left: 400px; width: 150px;">'
	+ '<a href="portfolio/websites/kinks.shtml" class="WhiteRO">web sites</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 12px; left: 475px; width: 150px;">'
	+ '<a href="portfolio/illustration/pack.shtml" class="WhiteRO">illustration</a><br/>'
	+ '</div>'
	+ '<div style="position: absolute; top: 12px; left: 549px; width: 150px;">'
	+ '<a href="portfolio/signage/emory.shtml" class="WhiteRO">architectural signage</a><br/>'
	+ '</div>'
	+ '</div>'
	+ '<div id="ContentIndex">'
	+ '<img src="images/logos/LogoLargeWhite.gif" alt="Holdren Design Logo" style="border: none; position: absolute; top: 152px; left: 239px;"/>'
	+ '<img src="images/logos/HDTextWhite.gif" alt="Holdren Design" style="border: none; position: absolute; top: 395px; left: 160px;"/>'
	+ '<img src="images/index/VerticalLine.gif" style="border: none; position: absolute; top: 278px; left: 552px;"/>'
	+ '<img src="images/index/WelcomeText1.gif" style="border: none; position: absolute; top: 342px; left: 586px;"/>'
	+ '<img src="images/index/TagText.gif" style="border: none; position: absolute; top: 401px; left: 586px;"/>'
	+ '<img src="images/index/WelcomeText2.gif" style="border: none; position: absolute; top: 440px; left: 586px;"/>'
	+ '</div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->
