﻿/// <reference path="../jquery-1.3.2-vsdoc.js" />

/*
	Updates to this file must be run through the compressor at:
	http://javascriptcompressor.com/
	then the dsbo.numeric-extensions.min.js file must be updated
*/

/*global jQuery */

jQuery.extend({
	IsNumeric: function(target) {
		return (target - 0) == target && target.length > 0;
	}
});