/****************************************************************************
	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);
}

/**
 * Traps iframe nav requests.
 */
function ifnav(href) {
	window.location = href;
	return(false);
}
