function AltToTitle ( ) {
	a = document.getElementsByTagName('img');
	for (var i = 0; i < a.length; i++) { 
		// Check if there is an ALT
		if ( a[i].alt != "" ) {
			// Check if there is no title
			if ( a[i].title == "" ) {
				a[i].title = a[i].alt;
			}
		}
	}
	b = document.getElementsByTagName('a');
	for (var x = 0; x < b.length; x++) { 
		// Check if there is an TITLE
		if ( b[x].title != "" ) {
			// Check if there is no ALT
			//if ( b[x].alt == "" ) {
				b[x].setAttribute('alt', b[x].title);
			//}
		}
	}
}