// JavaScript Document
/*	This script will look at all images on the page and determine if the
	ALT and TITLE attributes are set.  If the ALT is set but TITLE is not, 
	then TITLE will equal ALT.
*/

window.onload = titleFixInit;

function titleFixInit() {
	for (var i=0; i<document.images.length; i++) {
		if (document.images[i].alt && !document.images[i].title) {
			document.images[i].title = document.images[i].alt;
		}
	}
}