// (C) Netlogic, 2003
window.onload = function() {
	GeckoALTfixer();
}

function GeckoALTfixer() {
	if (navigator.product && navigator.product == 'Gecko') {
		var i, j, images = Array(document.getElementsByTagName('IMG'), document.getElementsByTagName('INPUT'), document.getElementsByTagName('AREA'));
		for (i = 0; i < images.length; i++) {
			for (j = 0; j < images[i].length; j++) {
				with (images[i][j]) {
					if (getAttribute('alt') && !getAttribute('title')) setAttribute('title', getAttribute('alt'));
				}
			}
		}
	}
}