//---- Form Button Change ----//
var imgArray=Array();
imgArray[0]=new Image();
imgArray[0].src="images/buttons/get-quote-top.jpg";
imgArray[1]=new Image();
imgArray[1].src="images/buttons/get-quote-top-over.jpg";

function MouseOverImage(theDivID, that) {
	var imgSource = that.id + '-over.jpg';
	var theDiv = document.getElementById(theDivID);
	theDiv.style.background = 'url(images/buttons/' + imgSource + ') top left no-repeat';
}
function MouseOutImage(theDivID, that) {
	var imgSource = that.id + '.jpg';
	var theDiv = document.getElementById(theDivID);
	theDiv.style.background = 'url(images/buttons/' + imgSource + ') top left no-repeat';
}
function MouseOverImagePNG(theDivID, that) {
	var imgSource = that.id + '-over.png';
	var theDiv = document.getElementById(theDivID);
	theDiv.style.background = 'url(images/buttons/' + imgSource + ') top left no-repeat';
}
function MouseOutImagePNG(theDivID, that) {
	var imgSource = that.id + '.png';
	var theDiv = document.getElementById(theDivID);
	theDiv.style.background = 'url(images/buttons/' + imgSource + ') top left no-repeat';
}