function dynMenu(subtab) 
	{ 
	//document.write('subtab='+subtab)
	for(var i=0; i<links.length; i++)
		{
		var pos=links_url[i].indexOf(subtab)
		if (pos>=0)
			{
			document.write('<a href="' + links_url[i] +  '" class="tabsubnavbold">'  + links_text[i] + '</a>'); 
			}
		else // not this link
			{
			document.write('<a href="' + links_url[i] +  '" class="tabsubnav">'  + links_text[i] + '</a>');
			}
		}  // end of for all the links
	} // end of function

