window.onload = init;

function init(){

	if(document.getElementsByTagName){
		
		// find menu item for this page and deal with it
		if(document.getElementById('more')){
			oMenu=document.getElementById('more');
			oLinks=oMenu.getElementsByTagName('A');
			
			for(i=0;i<oLinks.length;i++){
				if(oLinks[i].href==document.location){
					oLinks[i].className='location';
					oLinks[i].href='#';
					oLinks[i].title='This page';
				}
			}
		}
		
		//write address to page (spam-bot avoidance)
		document.getElementsByTagName('ADDRESS')[0].innerHTML='To comment <br><a href="mailto:'+escape('w1@clientside.net.au')+'">contact the author</a>';
	}
}
