// JavaScript Document

function startList()
	{
	if (document.all&&document.getElementById) 
		{
		navRoot = document.getElementById("menu");
		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", "")}
				}
			}
		theObjects = document.getElementsByTagName("object");
		for (var i = 0; i < theObjects.length; i++) {theObjects[i].outerHTML = theObjects[i].outerHTML;}
		}
	}


function showPic (whichpic) {
if (document.getElementById) {
document.getElementById('placeholder').src = whichpic.href;
  return false;
 } else {
  return true;
 }
}

function flash_movie()
	{
	if (document.all)
	{
	document.write('<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="617" height="228" id="movie" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="/includes/movie.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write ('<param name="wmode" value="transparent"/>')
	document.write('<embed src="/includes/movie.swf" quality="high" bgcolor="#ffffff" width="617" height="228" name="movie" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
	}
	else
	{
   document.write ('<object type="application/x-shockwave-flash" data="/includes/movie.swf" id=movie width="617" height="228">')
	document.write ('<param name="movie" value="/includes/movie.swf"/>')
	document.write ('<param name="wmode" value="transparent"/>')
	document.write ('</object>') 
	}
	}

window.onload=startList
