navHover = function() {
	var lis = document.getElementById("navmenu-v").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

function PrintFlashCode(clsid, codebase, width, height, name) {
document.write('<object classid="'+clsid+'" codebase="'+codebase+'" width="'+width+'" height="'+height+'">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="movie" value="'+name+'?'+Math.random()+'">');
document.write('<param name="quality" value="high">');
document.write('<embed src="'+name+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
document.write('</object>');
}