function buildmenu(){
	if ($('internallinks')){
		var n=1;
		var list=$('internallinks');
		var menulist=$A(document.getElementsByTagName('h2'));
		menulist.each(function(header){
			header.id="head"+n++;
			var text=header.firstChild.data;
			a=document.createElement('a');
			a.href="#"+header.id;
			a.innerHTML=text;
			li = document.createElement('li');
			li.appendChild(a);
			//li.setAttribute('id',w);
			list.appendChild(li);		
		});
	}
}


