// JavaScript Document
function flashHome()
		{
		document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0'  width='770' height='210' id='button2' align='middle'><param name='allowScriptAccess' value='sameDomain' /><param name='movie' value='Untitled-1a.swf' /><param name='quality' value='high' /><param name='bgcolor' value='#ededed' /><param name='wmode' value='transparent' /><embed src='Untitled-1a.swf' quality='high' bgcolor='#ededed' width='770' height='210' name='button2' wmode='transparent' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' /></object>");
		}
		
		
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;
