function fTopMenuChange( nPageID, sName ) {
	oForm = document.getElementById( "frmMaster" );
	if( nPageID > 0 ) {
		document.getElementById( sName ).className = "menuActive" + sName;
	}
	switch( nPageID ) {
	case 0:
		oForm.action = "../index.asp";
		break;
	case 1:
		oForm.action = "../reflections/index18.asp";
		break;
	case 2:
		oForm.action = "../reunion/index.asp";
		oForm.hReunionMode.value = 25;
		break;
	case 3:
		oForm.action = "../gallery/gallery001.asp";
		break;
	case 4:
		oForm.hPageID.value = 1;
		oForm.hMessagePage.value = 1;
		oForm.action = "../soc/index.asp";
		break;
	case 5:
		oForm.action = "../sounds/index.asp";
		break;
	case 6:
		oForm.action = "../kitchen/index.asp";
		break;
	case 12:
		oForm.action = "../interviews/index.asp";
		break;
	default:
		oForm.action = "../index.asp";
		break;
	}
	oForm.hPageID.value = nPageID;
	oForm.submit();
}