function initmenu() {
	marr=document.getElementById('menu').getElementsByTagName('li');
	marr[marr.length-1].style.background='none';
}

function initli() {
	ali=document.getElementById('ann_links').getElementsByTagName('li');
	for(i=0;i<ali.length;i++) {
		ali[i].onmouseover=function() {
			for(j=0;j<ali.length;j++) {
				ali[j].className='';
			}
			this.className='ann_act';
			document.getElementById('ann_img').getElementsByTagName('img')[0].src=this.getElementsByTagName('a')[0].rel;
		}
	}
}

