//Called from services page and possible surgeries too
<!--
function highlight(section,sectionpara)
{
if(section == 'service10'){
document.getElementById(section).className = 'headfocus'
document.getElementById(sectionpara).className = 'parafocus'
document.getElementById('service10a').className = 'headfocus'
document.getElementById('service10b').className = 'parafocus'
document.getElementById('service10c').className = 'headfocus'
document.getElementById('service10d').className = 'parafocus'
document.getElementById('service10e').className = 'headfocus'
document.getElementById('service10f').className = 'parafocus'
prevslct = section
}
else
{
document.getElementById(section).className = 'headfocus'
document.getElementById(sectionpara).className = 'parafocus'
prevslct = section
}
}

function reset(prevslct)
{
if (prevslct != 'empty'){
	if(prevslct == 'service10'){
	prevslcttxt = prevslct + 'text'
	document.getElementById(prevslct).className = 'subsub'
	document.getElementById(prevslcttxt).className = 'normal'
	document.getElementById('service10a').className = 'subsub'
	document.getElementById('service10b').className = 'normal'
	document.getElementById('service10c').className = 'subsub'
	document.getElementById('service10d').className = 'normal'
	document.getElementById('service10e').className = 'subsub'
	document.getElementById('service10f').className = 'normal'
	}
	else
	{
	prevslcttxt = prevslct + 'text'
	document.getElementById(prevslct).className = 'subsub'
	document.getElementById(prevslcttxt).className = 'normal'
	}
	}
}

function personchange(teamselect)
{
var teamnames = new Array()
teamnames[0] = 'Gillian Elstow'
teamnames[1] = 'Gillian Lewis'
teamnames[2] = 'Patricia O`Neill'
teamnames[3] = 'Douglas Redpath'
teamnames[4] = 'Rhian Jones'
teamnames[5] = 'Ruth Knight'
teamnames[6] = 'Becky Collis'
teamnames[7] = 'Clare Stanley'
teamnames[8] = 'Chris Yerbury'
//
var teambiog = new Array()
teambiog[0] = 'Gillian Elstow biog'
teambiog[1] = 'Gillian Lewis biog'
teambiog[2] = 'Patricia O`Neill biog'
teambiog[3] = 'Douglas Redpath biog'
teambiog[4] = 'Rhian Jones biog'
teambiog[5] = 'Ruth Knight biog'
teambiog[6] = 'Becky Collis biog'
teambiog[7] = 'Clare Stanley biog'
teambiog[8] = 'Chris Yerbury biog'
//
var teamphoto = new Array()
teamphoto[0] = 'images/public_doc1.gif'
teamphoto[1] = 'images/public_doc2.gif'
teamphoto[2] = 'images/public_doc3.gif'
teamphoto[3] = 'images/public_doc4.gif'
teamphoto[4] = 'images/public_doc5.gif'
teamphoto[5] = 'images/public_doc6.gif'
teamphoto[6] = 'images/public_doc7.gif'
teamphoto[7] = 'images/public_doc8.gif'
teamphoto[8] = 'images/public_doc9.gif'
//
var teamphotoalt = new Array()
teamphotoalt[0] = 'Gillian Elstow photo'
teamphotoalt[1] = 'Gillian Lewis photo'
teamphotoalt[2] = 'Patricia O`Neill photo'
teamphotoalt[3] = 'Douglas Redpath photo'
teamphotoalt[4] = 'Rhian Jones photo'
teamphotoalt[5] = 'Ruth Knight photo'
teamphotoalt[6] = 'Becky Collis photo'
teamphotoalt[7] = 'Clare Stanley photo'
teamphotoalt[8] = 'Chris Yerbury photo'
//
var teamrole = new Array()
teamrole[0] = 'Doctor'
teamrole[1] = 'Doctor'
teamrole[2] = 'Doctor'
teamrole[3] = 'Doctor'
teamrole[4] = 'Doctor'
teamrole[5] = 'Doctor'
teamrole[6] = 'Doctor'
teamrole[7] = 'Doctor'
teamrole[8] = 'Doctor'

document.getElementById('teamphoto').src = teamphoto[teamselect]
document.getElementById('teamphoto').alt = teamphotoalt[teamselect]
document.getElementById('namelabel').innerHTML = 'Name:'
document.getElementById('personname').innerHTML = teamnames[teamselect]
document.getElementById('rolelabel').innerHTML = 'Role:'
document.getElementById('personrole').innerHTML = teamrole[teamselect]
document.getElementById('teambiog').className = 'Normal'
document.getElementById('teambiog').innerHTML = teambiog[teamselect]
}

//-->