function Multiplier(intValue) {
	var intM;
	if (intValue > 25) {
		switch (intValue) {
		case 26: case 27: case 28: case 29: case 30: case 31: case 32:
			intM = 10 * (intValue - 23);
			break;
		case 41: case 42: case 43: case 44: case 45:
			intM = 50 * (intValue - 35);
			break;
		default: 
			intM = 25 * (intValue - 29);
			break;
		}
	} else {
		intM = intValue;
	}
	return intM;
}

