function addDecimal(fixMe) {
	withDecimals = String(fixMe);

	if (withDecimals.indexOf('.') == -1) { withDecimals += ".00"; }
	else {

	for (i=0; i < withDecimals.length; i++) {
		if (withDecimals.charAt(i) == '.') {
			if ((i+2) == withDecimals.length) { withDecimals += "0"; }
		break;
		}
	}
	}
	return withDecimals;
}
