﻿	function changeImg(imgNm,showImg) {
		// alert(showImg);
		document.getElementById('hdrBanner').innerHTML ="<img src='filelib/" + imgNm + "' width='740' height='455' border='0'>"
		// <div id='logo'><img src='/images/baldwins-logo.jpg' width='200' height='168' alt='Baldwins Omega' title='Baldwins Omega' border='0'></div>";
		
		for (counterImg=1;counterImg<=5;counterImg++) {
			document.getElementById("smallPic"+counterImg).style.filter="alpha(opacity=40);-moz-opacity:0.4";
			document.getElementById("smallPic"+counterImg).style.opacity=0.4;
		}
		document.getElementById("smallPic"+showImg).style.filter="alpha(opacity=100);-moz-opacity:1";
		document.getElementById("smallPic"+showImg).style.opacity=1;
		
	}
