(function($)
{
	$.utils = {
		
		convert_farenheit_to_celsius: function(value) {
			return (value - 32) / 1.8;
		},
		
		convert_celsius_to_farenheit: function(value) {
			return (value * 1.8) + 32;
		},
		
		validate_number: function(value) {
			return (parseFloat(value) == value);
		}
		
	};
})(jQuery);
