function ieButtonFix() {
	if (navigator.appVersion.match(/\bMSIE\b/)) {
		var buttons = document.getElementsByTagName('button');
		for(i = 0; i < buttons.length; i++) {
			buttons[i].onclick = function() {
				var buttons = document.getElementsByTagName('button');
				for(j = 0; j < buttons.length; j++) {
					if(buttons[j] != this) {
						buttons[j].name = null;
					}
				}
				return true;
			}
		}
	}
}

function fixHover() {
	var tags = document.getElementsByTagName('*');
	for(i = 0; i < tags.length; i++) {
		tags[i].onmouseover = function() {
			this.className += " hover";
		}
		tags[i].onmouseout = function() {
			this.className = this.className.replace(new RegExp(" hover\\b"), "");
		}
	}
}
if(/MSIE 6.0/.test(navigator.userAgent)) {
	FastInit.addOnLoad(fixHover, ieButtonFix);
}

var FO = { movie:"/swf/header-home.swf", width:"700", height:"225", majorversion:"6", build:"40", wmode:"transparent" };
UFO.create(FO, "hdr-swf");
