// (C) Netlogic, 2003

function OnLoadHitchs() {
	return true;
}

function ArrayFromCollection(c) {
	var a = new Array();


	for(i=0; i<c.length; i++) {
		if(typeof c[i] === 'object') {
			a[i] = c[i];
		}
	}

	return a;
}

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'));
				}
			}
		}
	}
}