// functions for the limbo wrapper
// updated 3/11 cory_obrien@nthp.org


(function($) {
	$.fn.default_swap = function(){
		return this.each(function(){
			$(this).focus(function(){
				if ($(this).val() == $(this)[0].defaultValue){ 
					$(this).val('').addClass('active');
				}
			});
		});
	}
	function clean_money(money) {
		return (parseFloat(money.replace('$','').replace(',', '')).toFixed(2) + '').replace('.', '');
	}
})(jQuery);
