function MenuRollover(img,phase) 
{ 
	if (phase==1) 
	document.images[img].src="/images/menu/"+img+".jpg" 
	else 
	document.images[img].src="/images/menu/"+img+".gif" 
}

function FlashInstalled()
{
	result = false;

	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"])
	{
		result = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
	}
	else if (document.all && (navigator.appVersion.indexOf("Mac")==-1))
	{
		// IE Windows only -- check for ActiveX control, have to hide code in eval from Netscape (doesn't like try)
		eval ('try {var xObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");if (xObj)	result = true; xObj = null;	} catch (e)	{}');
	}

	if ((navigator.userAgent.indexOf("Gecko") >= 0
		|| navigator.userAgent.indexOf("Firefox") >= 0)
		&&
		(navigator.platform.indexOf("Mac") >= 0
		|| navigator.platform.indexOf("PPC") >= 0
		|| navigator.platform.indexOf("68K") >= 0)
		)
	{
		result = false;
	}
	return result;
}

