/*
	For the Home Page Flash Swap
	Uses the sIFR Flash Detection and replaces the code within the div containing the alternative flash image if an acceptable flash version is present.
	2006 Digital Business Solutions
*/

function swap() {
	var flashCode = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="navf"><param name="movie" value="/flash/nav-aqua.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="wmode" value="transparent" /><embed src="/flash/nav-aqua.swf" quality="high" bgcolor="#ffffff" id="navff" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	var flashDiv = getobj("nav");
	if(window.hasFlash) {
		flashDiv.innerHTML = "";
		flashDiv.innerHTML=flashCode;
		var flashObj = getobj("navf");
		flashObj.style.width = "62.5em";
		flashObj.style.height = "8.67em";
		var flashObjFF = getobj("navff");
		if (flashObjFF) {
			flashObjFF.style.width = "62.5em";
			flashObjFF.style.height = "8.67em";
		}
	}else {
		var flashAltText='<div id="noflash_nav"><map id="nav1" name="nav"><area shape="rect" coords="29,14,93,57" href="http://www.abraham-hicks.com/lawofattractionsource/about_abraham.php" alt="About Abraham-Hicks" /><area shape="rect" coords="163,29,209,53" href="http://www.abraham-hickslawofattraction.com/lawofattractionstore/index.html" alt="Store" /><area shape="rect" coords="277,14,344,58" href="http://www.abraham-hicks.com/lawofattractionsource/journal.php" alt="Journals" /><area shape="rect" coords="388,29,486,54" href="https://www.abraham-hickslawofattraction.com/lawofattractionsource/subscriptions.php" alt="Subscriptions" /><area shape="rect" coords="520,15,598,59" href="http://www.abraham-hicks.com/lawofattractionsource/workshops.php" alt="Workshops and Cruises" /><area shape="rect" coords="661,19,708,61" href="http://www.lawofattractioninteraction.com/LawofAttraction_Videos.php" alt="Video Clips" /></map><img src="/images/nav.gif" width="750" height="83" usemap="#nav" alt="navigation bar" class="playbutton" /></div>';
		flashDiv.innerHTML="";
		flashDiv.innerHTML=flashAltText;
	}
}

//start after load
window.onload = function() {
	swap();
//	if (document.getElementById && gradientshadow)
//		gradientshadow.create();
}

