if ((document.getElementById || document.all) && document.images) { window.onload = windowOnload; }

function windowOnload() {
	if(navigator.appName == 'Microsoft Internet Explorer') { menuOnload(); };
	// let all other onload functions follow
	}

function menuOnload() {
	var il,imga,imgatxt;

	// walk through all lower elements (div) in gallery
 	// il=document.getElementById('minigallery').getElementsByTagName('div');
	if (document.getElementById('minigallery')) { il=document.getElementById('minigallery').getElementsByTagName('div'); }
	if (document.getElementById('gallery')) { il=document.getElementById('gallery').getElementsByTagName('div'); }

	if (il) {
		for(i=0;i<il.length;i++) {

			// grab the first link within the actual lower element
			imga=il[i].getElementsByTagName('a')[0];

			imga.onmouseover=function(){return puta(this);}
			imga.onmouseout=function(){return putb(this);}
			}
		}

	}

function puta(o) {
	o.className += " over";
	return false;
	}

function putb(o) {
	o.className = o.className.replace(" over", "");
	return false;
	}