

function body_load ()
{
	// change the current link in the menubar to plain text
	
	// figure out current page file name	
	var url = document.URL;
	
	// workaround for those who come to http://333venturers.ca/
	if ( url.lastIndexOf ( "/" ) == url.length - 1 )
	{
		url = url + "index.php";
	}
	
	// get all the link tags
	var all_links = document.getElementsByTagName ( "a" );
	
	// loop through, and change all menu_item styles or whatnot
	for ( i = 0; i < all_links.length; i++ )
	{
		if ( all_links[i].className = "menu_item" )
		{
// 			menu_links.push ( all_elements[i] );
			if ( all_links[i].href == url )
			{
			// change style HERE!
// 			menu_links[i].style.fontWeight = "bold";
			
			// or instead, make the link no longer a link
				all_links[i].parentNode.innerHTML = all_links[i].innerHTML;
			}
		}
	}
}
