// Mouseover Button Replace Class Start
var inputArray = document.getElementsByTagName('input');
for(i=0;i<inputArray.length;i++)
{
 if(inputArray[i].className=="btn73_blue")
	{
  inputArray[i].onmouseover =	function() { this.className=this.className+'Over'; };
		inputArray[i].onmouseout =	function() { this.className='btn73_blue' };
	}
 else if(inputArray[i].className=="btn93_blue")
	{
  inputArray[i].onmouseover =	function() { this.className=this.className+'Over'; };
		inputArray[i].onmouseout =	function() { this.className='btn93_blue' };
	}
}
// Mouseover Button Replace Class End