
function showtext(id)
{
	if (id == 1)
	{
		var newHTML = "The Pacific Islands Telecommunications Association (PITA) is a non-profit organisation formed to represent the interests of small island nations in the Pacific Region in the field of telecommunications.";
		document.getElementById('para').innerHTML = newHTML;
		document.getElementById('link1').style.color ="black";
		document.getElementById('link2').style.color ="#3366A8";
		document.getElementById('link3').style.color ="#3366A8";
		
	}
	else if (id == 2)
	{
		var newHTML = "The objective of the association is to improve, promote, enhance, facilitate and provide telecommunications services within Member and Associate Member Countries.";
		document.getElementById('para').innerHTML = newHTML;
		document.getElementById('link1').style.color ="#3366A8";
		document.getElementById('link2').style.color ="black";
		document.getElementById('link3').style.color ="#3366A8";
	}
	else if (id == 3)
	{
		var newHTML = "PITA Members are telecommunication entities in Melanesia, Micronesia, Polynesia, Australia and New Zealand. Associate Members are suppliers of telecommunication equipment and services. Partner agencies are regional and international organisations with vested interest in telecommunications and its development. Telecom Regulatory body from government has a special membership category. To join please <a href='http://www.pita.org.fj/index.cfm?action=admin&task=articles&cmd=view&id=F0A11F31-FB13-AD17-90F75C4A23DBAB8E'>click here! </a>";
		document.getElementById('para').innerHTML = newHTML;
		document.getElementById('link1').style.color ="#3366A8";
		document.getElementById('link2').style.color ="#3366A8";
		document.getElementById('link3').style.color ="black";
	}
}
