var oldonload=window.onload;

window.onload=function() {
	if(typeof oldonload == 'function' && oldonload) {
		oldonload();
	}
	as=document.getElementById('gallery').getElementsByTagName('a');
	for (var i=0;i<as.length;i++) {
		as[i].onmouseover=function() {
			span=this.getElementsByTagName('span')[0];
			span.style.top=Math.floor(Math.round(14.7-span.offsetHeight/32))+'em';
		}
	}
}
