// Javascript for flash in home page
//
// Set a transient cookie for visited state
function setVisitCookie () {
	document.cookie = "visted=1"
}
//
// make the div that holds the animation transparent
function makeIntroTransparent () {
	document.getElementById("introAnimation").style.background = "transparent";
}
function makeIntroOpaque () {
	document.getElementById("introAnimation").style.background = "#FFFFFF";
}
function removeIntro () {
	document.getElementById("introAnimation").style.display = "none";
}
//
// flash code for embedding upon detection
var introFlashCode = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="740" height="716"><param name="movie" value="introduction.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="introduction.swf" width="740" height="716" align="middle" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" /></object>';