var lawyer=new Array()
lawyer["kip"]='<img src="images/lawyer/kip.jpg" />'
lawyer["norah"]='<img src="images/lawyer/norah.jpg" />'
lawyer["mark"]='<img src="images/lawyer/mark.jpg" />'
lawyer["symon"]='<img src="images/lawyer/symon.jpg" />'
lawyer["edwin"]='<img src="images/lawyer/edwin.jpg" />'
lawyer["cathi"]='<img src="images/lawyer/cathi.jpg" />'

var lawyerText=new Array()
lawyerText["kip"]='<p class="lawyerhead">DONALD B. KIP'
 +'KORIR</p><p class="textbody">DONALD B. KIPKOR'
 +'IR holds a Bachelor of Laws, LL.B (Hons) Degree fr'
 +'om the University of Nairobi and a Postgraduate Di'
 +'ploma from the Kenya School of Law. He is an Advoc'
 +'ate of the High Court of Kenya (admitted in 1992),'
 +' with wide experience in Commercial Litigation, In'
 +'surance Claims, Advertising Law, Defamation, Debt '
 +'Recovery and White-collar Crime law, Copyright, Tr'
 +'ademark and Patent law. He is also a member of the'
 +' Law Society of Kenya and a former member of its c'
 +'ouncil. He has served as a Director in Kenya Post '
 +'Office Savings Bank (Postbank).</p>'
 
lawyerText["norah"]='<p class="lawyerhead">NORAH M. MUTU'
 +'KU</p><p class="textbody">NORAH M. MUTUKU hol'
 +'ds a Bachelor of Laws, LL.B (Hons) Degree from the'
 +' University of Nairobi and a Postgraduate Diploma '
 +'from the Kenya School of Law. She is an Advocate o'
 +'f the High Court of Kenya (admitted in 2002). Her '
 +'areas of work include Conveyancing, Securities Doc'
 +'umentation, Commercial Contracts, Debt Recovery an'
 +'d Probate and Administration. She is a member of t'
 +'he Law Society of Kenya.</p>'

lawyerText["mark"]='<p class="lawyerhead"><span clas'
 +'s="lawyerhead">MARK M. NGARU</span></p><p class='
 +'"textbody">MARK M. NGARU holds a Bachelor of Laws,'
 +' LL.B (Hons) degree from the University of Nairobi'
 +' and a Postgraduate Diploma from the Kenya School '
 +'of Law. He is an Advocate of the High Court of Ken'
 +'ya (admitted in 2003). His areas of work include C'
 +'ommercial and Civil Litigation, and he also has so'
 +'me experience in Conveyancing matters. He is a mem'
 +'ber of the Law Society of Kenya.</p>'
 
lawyerText["symon"]='<p class="lawyerhead">SYMON C. YATOR</p>'
 +'<p class="textbody">SYMON C. YATOR holds a Bachelor'
 +' of Laws, LL.B (Hons) Degree from Moi University and'
 +' a Postgraduate Diploma from the Kenya School of Law.'
 +' He is an Advocate of the High Court of Kenya (admitted'
 +' in 2006). His areas of work include Conveyancing, '
 +'Securities Documentation, Commercial Contracts, Probate'
 +' and Administration, and he also has some experience in Debt'
 +' Recovery. He is a member of the Law Society of Kenya.</p>'
 
 lawyerText["edwin"]='<p class="lawyerhead">EDWIN K. KARWANDA</p>'
 +'<p class="textbody">EDWIN K. KARWANDA holds a Bachelor of Laws,'
 +' LL.B (Hons) degree from the University of Nairobi and a Postgraduate'
 +' Diploma from the Kenya School of Law. He is an Advocate of the High'
 +' Court of Kenya (admitted in 2006). His areas of work include Commercial'
 +' and Civil Litigation, and he also has some experience in Conveyancing'
 +' matters. He is a member of the Law Society of Kenya.</p>'
 
lawyerText["cathi"]='<p class="lawyerhead">CATHERINE W. M'
 +'UNGAI</p><p class="textbody">CATHERINE W. MUN'
 +'GAI holds a Bachelor of Laws, LL.B (Hons) Degree f'
 +'rom the University of Nairobi and a Postgraduate D'
 +'iploma from the Kenya School of Law. She is an Adv'
 +'ocate of the High Court of Kenya (admitted in 2000'
 +'). Her areas of work include Commercial and Civil '
 +'Litigation, Debt Recovery, Probate and Administrat'
 +'ion and Legal Research. She is a member of the Law'
 +' Society of Kenya.</p>'

var i=0

function alterLawyer(str){
	//if IE 4+
	if (document.all)
		lawpict.innerHTML=lawyer[str];
		//else if NS 4
		else if (document.layers){
		document.ns4page.document.ns4page2.
		document.write(lawyer[str]);
		document.ns4page.document.ns4page2.
		document.close();
	}
	//else if NS 6 (supports new DOM)
	else if (document.getElementById){
		rng = document.createRange();
		el = document.getElementById("lawpict");
		rng.setStartBefore(el);
		htmlFrag = rng.createContextualFragment(lawyer[str]);
		while (el.hasChildNodes())
		el.removeChild(el.lastChild);
		el.appendChild(htmlFrag);
	}
	
	if (i==lawyer.length-1)
	i=0
	else
	i++
}
function alterLawyerText(str){
	//if IE 4+
	if (document.all)
		lawtext.innerHTML=lawyerText[str];
		//else if NS 4
		else if (document.layers){
		document.ns4page.document.ns4page2.
		document.write(lawyerText[str]);
		document.ns4page.document.ns4page2.
		document.close();
	}
	//else if NS 6 (supports new DOM)
	else if (document.getElementById){
		rng = document.createRange();
		el = document.getElementById("lawtext");
		rng.setStartBefore(el);
		htmlFrag = rng.createContextualFragment(lawyerText[str]);
		while (el.hasChildNodes())
		el.removeChild(el.lastChild);
		el.appendChild(htmlFrag);
	}
	
	if (i==lawyerText.length-1)
	i=0
	else
	i++
}