function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_off."))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}



//-------------------------------------------------------------------------------
function printDate() {
  myDate = new Date();
  myYear = myDate.getFullYear();
  document.write(myYear);
}



// index.html FLASH--------------------------------------------------------------
function Runflash()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="567" height="319">\n');
	document.write('<param name="movie" value="index.swf">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="index.swf" width="567" height="319">\n');
	document.write('</embed>\n');
	document.write('</object>\n');
}


