function init()
{
	try
	{
		var infoDiv = document.getElementById('info');
		var H1s = infoDiv.getElementsByTagName('H1');
		h1 = H1s[0];
		
		var a = document.createElement('A');
		var txt = document.createTextNode('Hide Project Information');
		a.appendChild(txt);
		a.onclick=function(){
			toggle(this);
			infoDiv.scrollIntoView();
		}
		a.onmouseover = function(){
			window.status = '';
			return true;
		}
		a.href = 'javascript:void(0);';
		a.className = 'toggleInfo';
		infoDiv.appendChild(a);
		//toggle(a);
	}
	catch(e)
	{
	}
}
function toggle(el){
	for(var i=0;i<el.parentNode.childNodes.length-1;i++)
	{
		switch(el.parentNode.childNodes[i].style.display)
		{
			case 'none':
			el.parentNode.childNodes[i].style.display = '';
			el.firstChild.nodeValue = 'Hide Project Information';
			break;
			
			default:
			el.parentNode.childNodes[i].style.display = 'none';
			el.firstChild.nodeValue = 'Show Project Information';
			break;
		}
	}
}