/***************************************************************
*  site.js
*  jpl 11/10/09
*
***************************************************************/


window.addEvent('domready', function() {
	new OverText($('s'));
});

	function swapToHoverSrc(theImage) {
		if(theImage.src.indexOf('_on') == -1)
			theImage.src = theImage.src.replace(/.gif$/, '_on.gif');
	}
	function swapFromHoverSrc(theImage) {
		theImage.src = theImage.src.replace(/_on.gif$/, '.gif');
	}