dA=Array();
dA[0]={href:"doctor_pramod.html", img:"thumb_pramod.jpg", name:"Dr Pramod Achan: Specialist Consultant"};
dA[1]={href:"doctor_ghassan.html", img:"ghassan_thumb.jpg", name:"Dr Ghassan Alusi: Specialist Consultant ENT Otolaryngologist, Head and Neck surgeon"};
dA[2]={href:"doctor_aubrey.html", img:"aubrey_image_thumb.jpg", name:"Dr Aubrey Bristow: Specialist Anaesthesia"};
dA[3]={href:"doctor_francis.html", img:"thumb_francis.jpg", name:"Mr Barry Francis: Specialist Podiatrist"};
dA[4]={href:"doctor_hargrave.html", img:"thumb_hargrave.jpg", name:"Mr Jason E Hargrave: Specialist Podiatrist"};
dA[5]={href:"doctor_jestico.html", img:"thumb_jestico.jpg", name:"Mr John Jestico: Specialist Neurosurgeon"};
dA[6]={href:"doctor_fid.html", img:"FID_thumb.jpg", name:"Dr F.I.D. Konotey-Ahulu: Specialist Tropical Medicine"};
dA[7]={href:"doctor_mehta.html", img:"thumb_mehta.jpg", name:"Dr Vivek Mehta: Specialist Pain Consultant "};
dA[8]={href:"doctor_manoj.html", img:"thumb_Manoj.jpg", name:"Mr Manoj Ramachandran: Specialist Consultant Orthopaedic Surgeon"};




function doctorSelected()
{
p=document.doctorForm.doctorSelect.value;
if (p!="") { window.location=p; }
}

function placePhotos()
{
for (i=0; i<dA.length; i++ )
	{

	img='<a href="'+dA[i]["href"]+'"><img src="images/'+dA[i]["img"]+'" width="113" height="98" border="0" hspace="0" vspace="0"/></a>';
	document.write(img);
	}
}

function placeNameOnDropDownMenu()
{
	document.write('<form name="doctorForm"><select name="doctorSelect" class="styleFormDropDown" width="200" onChange="javascript:doctorSelected();">');
	document.write('<option value=""> </option>');
	for (i=0; i<dA.length; i++ )
		{
		document.write('<option value="'+dA[i]["href"]+'">'+dA[i]["name"]+'</option>');
		}
	document.write('</select></form>');
}

