/****************************************************************************
	Client Scripts
	Zac Hester
****************************************************************************/


/**
 * Add my own trim method to the String object.
 */
String.prototype.trim = function() {
	var str = this.replace(/^\s+/g, '');
	str = str.replace(/\s+$/g, '');
	return(str);
}
