function expandNav(navID,textID) {
	var myEffect = new Fx.Morph(navID, {duration: 125, transition: Fx.Transitions.Sine.easeOut}); 
	myEffect.start('.expandNav');
	// $(textID).tween('color','#ffffff'); commented out, takes too long!
}

function shrinkNav(navID,textID) {
	var myEffect = new Fx.Morph(navID, {duration: 125, transition: Fx.Transitions.Sine.easeOut}); 
	myEffect.start('.shrinkNav');
	// $(textID).tween('color','#00378d'); commented out, takes too long!
}

function showVid() {
  popUpWindow = window.open('','','height=640,resizable=1,scrollbars=1,width=800');
  popUpWindow.document.write('<body><head><title>Automated Bagging using our sophisticated facilities</title></head><div align="center" style="padding-top:20px;"><object width="760" height="540"><param name="movie" value="data/procoat_movie.swf"><embed src="data/procoat_movie.swf" width="760" height="540"></embed></object><input style="font-size:0.7em;" type="button" value="Close window" onclick=window.close()></div></body>');
}