/*
function initMenu(){
	var nodes = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onmouseover = function()
		{
			this.className += " hover";
		}
		nodes[i].onmouseout = function()
		{
			this.className = this.className.replace(" hover", "");
		}
	}
}
if (document.all && !window.opera) attachEvent("onload", initMenu);
*/

function addWriteGlobal(){
	alert('x');
	$('#header').html('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0" width="700" height="172"><param name="movie" value="/images/hri_head.swf"/><param name="quality" value="high"/><param name="play" value="true"/><param name="wmode" value="transparent"/><embed src="/images/hri_head.swf" width="700" height="172" play="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" /></object>');
	}
function triggerWrite(){
	var t = setTimeout('addWriteGlobal',2000);
}
	
$(document).ready(triggerWrite);
