/*  SSString functions...extensions of String object in JS  */

// trims leading and trailing white space
String.prototype.ssTrim = function( ){
	j = this.replace(/^\s+/, '');
	return j.replace(/\s+$/, '');
};



