// JavaScript Document
// Check to see if the version meets the requirements for playback -- 

function loadflash(){
	//hasReqestedVersion = false;
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		
		AC_FL_RunContent(
				"src", "flash/home/shell",
				"width", 900,
				"height", 240,
				"align", "left",
				"id", "homepageFlash",
				"quality", "high",
				"name", "slideshow",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer",
				"base", ".",
				"wmode", "transparent"
		);

	
	} else {  // flash is too old or we can't detect the plugin
		
	var alternateContent = '<div id="nonFlash"><div id="studentImg" class="rolloverImg"><a href="/student/" title="STUDENT" onMouseOver="revealImages('+"'"+'studentHover'+"'"+', '+"'"+'studentShaddow'+"'"+');" onMouseOut="hideImages('+"'"+'studentHover'+"'"+', '+"'"+'studentShaddow'+"'"+');"><div id="studentShaddow" class="jsShaddow">&#160;</div><img src="/images/global/home/flash/student.jpg" width="108px" height="130px" alt="STUDENT" /><div id="studentHover" class="jsHover">&#160;</div><img class="imgText" src="/images/global/home/flash/studentHover_bg.gif" width="79px" height="10px" alt="STUDENTS" /></a></div>'
+
'<div id="facultyImg" class="rolloverImg"><a href="/faculty/" title="FACULTY" onMouseOver="revealImages('+"'"+'facultyHover'+"'"+', '+"'"+'facultyShaddow'+"'"+');" onMouseOut="hideImages('+"'"+'facultyHover'+"'"+', '+"'"+'facultyShaddow'+"'"+');"><div id="facultyShaddow" class="jsShaddow">&#160;</div><img src="/images/global/home/flash/faculty.jpg" width="108px" height="130px" alt="FACULTY" /><div id="facultyHover" class="jsHover">&#160;</div><img class="imgText" src="/images/global/home/flash/facultyHover_bg.gif" width="79px" height="10px" alt="FACULTY" /></a></div>'
+
'<div id="collegeImg" class="rolloverImg"><a href="/college/" title="COLLEGE" onMouseOver="revealImages('+"'"+'collegeHover'+"'"+', '+"'"+'collegeShaddow'+"'"+');" onMouseOut="hideImages('+"'"+'collegeHover'+"'"+', '+"'"+'collegeShaddow'+"'"+');"><div id="collegeShaddow" class="jsShaddow">&#160;</div><img src="/images/global/home/flash/college.jpg" width="108px" height="130px" alt="COLLEGE" /><div id="collegeHover" class="jsHover">&#160;</div><img class="imgText" src="/images/global/home/flash/collegeHover_bg.gif" width="79px" height="10px" alt="COLLEGE" /></a></div>'
+
'<div id="spiritImg" class="rolloverImg"><a href="/spirit/" title="SPIRIT"  onMouseOver="revealImages('+"'"+'spiritHover'+"'"+',  '+"'"+'spiritShaddow'+"'"+');"  onMouseOut="hideImages('+"'"+'spiritHover'+"'"+',  '+"'"+'spiritShaddow'+"'"+');"><div id="spiritShaddow" class="jsShaddow">&#160;</div><img src="/images/global/home/flash/spirit.jpg" width="108px" height="130px" alt="SPIRIT" /><div id="spiritHover"  class="jsHover">&#160;</div><img class="imgText" src="/images/global/home/flash/spiritHover_bg.gif" width="79px" height="10px" alt="SPIRIT" /></a></div>'
+
'</div>';
	
	document.write(alternateContent);
		// insert non-flash content
	}
}