function hoverOver(thisObj, thisEvent) {
	thisObj.className = "siteButtonHover";

}
function hoverOut(thisObj, thisEvent) {
	thisObj.className = "siteButton";

}

String.prototype.trim = function () {
		return this.replace(/^\s+/, "").replace(/\s+$/, "");   				 
}
