/* * * * * * * * * * * * * * * * * *
* OCCC MEMBERS section
* * * * * * * * * * * * * * * * * */

	function unhighlight(id) {
		for(var i=1; i<14; i++){
			document.getElementById('poblink' + i).style.backgroundColor = '';}
		document.getElementById(id).style.backgroundColor = '#dfdcba';}

	function showOnly(active){
		document.getElementById('intro').style.display = 'none';

		for(var i=1; i<14; i++){
			if("pob" + i != active)	{document.getElementById("pob" + i).style.display = 'none'; }
			else					{document.getElementById("pob" + i).style.display = 'block';}
		}
	}

	function assignDisplayFunctions(content, link){
		try{
		document.getElementById(link).onclick = function() {
			toggle(content);
			showOnly(content);
			unhighlight(link);};
		}
		catch(err){alert(link);}
	}

	function showContent(partialID){
		if(isFF()){
			document.getElementById('content_' + partialID).setAttribute('class','section visible');}
		else {
			document.getElementById('content_' + partialID).style.display = 'block';}

	}

	function hideContent(){
			for(var i=0; i<arguments.length; i++){
				if(isFF()){
					document.getElementById('content_' + arguments[i]).setAttribute('class','section');}
				else {
					document.getElementById('content_' + arguments[i]).style.display = 'none';}
			}
	}
