// setup mouse overs for top navigation
function setup_nav () {
	var header = $('nav');
	if ( ! header )
		return;
	
	var images = header.getElementsByTagName('img');
	images = $A(images);
	images.each( function(image) {
		image.onmouseover = function () {
			var src = this.src;
			if (src.match(/.*_off.gif$/)) {
				image.src = src.replace(/_off.gif$/,"_over.gif")
			}
		};
		image.onmouseout = function () {
			var src = this.src;
			if (src.match(/.*_over.gif$/)) {
				image.src = src.replace(/_over.gif$/,"_off.gif")
			}
		};
	});
}

// functions to run on page load
function setup () {
	setup_nav();
}

window.onload = setup;

function show_video (type) {
	if (type == 'mov') {
		var newwindow = window.open('','video','height=240,width=320,scrollbars=no');
		newwindow.document.write('<html><body style="margin:0;padding:0;background:#000;text-align:center;">');
		newwindow.document.write('<object width="320" height="240" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" width="320" height="256" align="middle">\n');
		newwindow.document.write('<param name="autoplay" value="true" />\n');
		newwindow.document.write('<param name="scale" value="aspect" />\n');
		newwindow.document.write('<param name="bgcolor" value="black" />\n');
		newwindow.document.write('<param name="src" value="/videos/Engine_Lab.mov.mov" />\n');
		newwindow.document.write('<embed src="/videos/Engine_lab.mov" autoplay="true" scale="aspect" width="320" height="240" align="middle" bgcolor="black" pluginspage="http://www.apple.com/quicktime/download/"></embed>');
		newwindow.document.write('</object>\n');
	}
	else if ( type == 'wmv' ) {
		var newwindow = window.open('','video','height=240,width=320,scrollbars=no');
		newwindow.document.write('<html><body style="margin:0 auto;padding:0;background:#000;text-align:center;">');
		newwindow.document.write('<object width="320" height="240" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="application/x-oleobject" standby="Loading Microsoft Windows Media Player components..." codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">');
		newwindow.document.write('<param name="autoplay" value="true" />\n');
		newwindow.document.write('<param name="bgcolor" value="black" />\n');
		newwindow.document.write('<param name="FileName" value="/videos/Engine_Lab.wmv" />\n');
		newwindow.document.write('<param name="showcontrols" value="true">\n');
		newwindow.document.write('<embed type="application/x-mplayer2" filename="/videos/Engine_lab.wmv" src="/videos/Engine_lab.wmv" width="320" height="240" bgcolor="black"></embed>');
		newwindow.document.write('</object>\n');
	}
	newwindow.document.close();
}