function loadImages () { 
	a=document.getElementsByTagName('img');
	for ( var i=0;i<a.length;i++ ) {
		var id = a[i].id;
		if ( id.substring(0,6) == 'detail' ) {
			im=document.getElementById(id);im.src=im.name;
		}
	}
}
