function RestoreImage(){ 
	nCount = document.OriginImage.length;
	ImgArray = document.OriginImage;

	if (document.OriginImage != null)
		for (i = 0; i < (nCount - 1); i += 2)
			ImgArray[i].src = ImgArray[i+1];
	document.OriginImage = null;
}

function ReplaceImage(){ 
	j = 0;
	ImgArray = new Array;
	oldImgArray = document.OriginImage;

	for (i = 0; i < ReplaceImage.arguments.length; i += 2) {
		obj=ReplaceImage.arguments[i]
		ImgArray[j++] = obj;
		if (oldImgArray == null || oldImgArray[j-1] != obj)
			ImgArray[j++] = obj.src;
		else
			ImgArray[j++] = oldImgArray[j];
		obj.src = ReplaceImage.arguments[i + 1];
	}
	if (document.OriginImage == null)
		document.OriginImage = ImgArray;
}
// Preload the Kick Ass rollovers
image1 = new Image(),image1.src = "images/navbar/Home2.gif";
image2 = new Image(),image2.src = "images/navbar/signstyles2.gif";
image3 = new Image(),image3.src = "images/navbar/QuoteForm2.gif";
image4 = new Image(),image4.src = "images/navbar/TowLinks2.gif";
image5 = new Image(),image5.src = "images/navbar/SignLaws2.gif";