var practice=new Array()
practice["comlit"]='<p class="textbody"><font color="#FF'
 +'FFFF">Commercial Litigation and Debt Recovery</fon'
 +'t></p><p class="textbody">Kipkorir, Titoo &amp;'
 +' Kiara has a significant presence in the Commercia'
 +'l sector as a leading Commercial Litigation firm. '
 +'In the recent past, we have advised on major debt '
 +'recovery cases for banks in Kenya and indeed been '
 +'successful in recovery through litigation as well '
 +'as receiverships. We also advise on all forms of r'
 +'efinancing, restructuring and rescheduling of deb'
 +'t on behalf of several banks.</p><p class="text'
 +'body">We also give efficient and professional advi'
 +'ce on all forms of commercial litigation including'
 +' contentious intellectual property matters, litiga'
 +'tion involving regulatory bodies and defamation. W'
 +'e have worked on several high profi le litigation '
 +'cases for large companies and state corporations.<'
 +'/p>'
 
practice["inlit"]='<p class="textbody"><font color="#FF'
 +'FFFF">Insurance Litigation</font></p>      <p> <s'
 +'pan class="textbody">Kipkorir, Titoo &amp; Kiara i'
 +'s a leading insurance law firm in Kenya, providing'
 +' the broadest range of services on general claims '
 +'to the whole Insurance industry in Kenya. </span><'
 +'/p>      <p class="textbody">We are known for all'
 +' types of insurance litigation and have been invol'
 +'ved in several high profile insurance cases.  We a'
 +'re also well known for our efficient and cost effe'
 +'ctive general claims handling services and act for'
 +' many of Kenya&rsquo;s general insurers and cover '
 +'the full range of insurance claims from high volum'
 +'e employers, public liability and motor claims to '
 +'complex indemnity and disaster litigation.</p>'
 
practice["bank"]='<p class="textbody"><font color="#FF'
 +'FFFF">Banking</font></p>      <p class="textbody"'
 +'> Our banking department advises several Kenyan ba'
 +'nks and financial institutions on secured,      '
 +'  unsecured, bilateral and syndicated loans with a'
 +' particular emphasis on Corporate Finance,       '
 +' International Trade Finance and Property Finance.'
 +' </p>      <p class="textbody">We also provide ge'
 +'neral banking advice        (including regu'
 +'latory advice) and assist corporate clients in the'
 +' management of their trade        finance '
 +'and treasury operations.</p>    </div>'
 
practice["corp"]='<div id="corp">        <p class="te'
 +'xtbody"><font color="#ffffff">Corporate</font></p>'
 +'        <p class="textbody"> Our corporate depart'
 +'ment provides a rounded Corporate and Commercial L'
 +'aw service to a wide range of clients, including m'
 +'ajor companies in the Financial, Insurance, Energy'
 +' and Telecommunications sectors as well as private'
 +' enterprises and partnerships. The department&rsqu'
 +'o;s work includes Corporate Finance, Corporate (Me'
 +'rgers and Acquisitions and Joint Ventures) and Gen'
 +'eral Commercial Contracts and advice. We have a cl'
 +'ose relationship with many of our clients, offerin'
 +'g regular advice and guidance on the legal issues '
 +'facing businesses on a daily basis. We also provid'
 +'e advice on contentious and non-contentious employ'
 +'ment and industrial relations matters.</p>       '
 +' <p class="textbody">          One of our partners'
 +' has considerable experience in all forms of Intel'
 +'lectual Property matters in Kenya and regionally. '
 +'</p>        <p class="textbody"> Recently, we hav'
 +'e advised several companies setting up multi-milli'
 +'on dollar businesses in the EPZ Sector in Kenya on'
 +' all aspects of corporate (including formation and'
 +' licensing issues), conveyancing (including the de'
 +'signation of land as an Export Processing Zone and'
 +' Development of an Export Processing Zone) and fin'
 +'ancing work, as a result of which we have built ex'
 +'cellent relationships with specialist EPZ financie'
 +'rs as well as the Export Processing Zone Authority'
 +'.</p>       </div>'
 
practice["conv"]='<p class="textbody"><font color="#FF'
 +'FFFF">Conveyancing</font></p>      <p class="text'
 +'body"> We provide comprehensive legal services to '
 +'companies and individuals, who wish to buy, sell, '
 +'develop, invest in or occupy all types of commerci'
 +'al, industrial and residential property and land. '
 +' In addition, in conjunction with our debt recover'
 +'y team, we advise on all aspects of property-relat'
 +'ed debt recovery, including valuations and auction'
 +'s of charged property.</p>'
 
 practice["altdis"]='<p class="textbody"><font color="#FF'
 +'FFFF">Alternative Dispute Resolution and Arbitrati'
 +'on</font></p>      <p class="textbody"> We have c'
 +'onsiderable experience in representing clients in '
 +'arbitral and alternative dispute resolution procee'
 +'dings in Kenya and abroad.</p>'

practice["priv"]='<p class="textbody"><font color="#ff'
 +'ffff">Private Clients</font></p>      <p class="t'
 +'extbody"> We provide a broad range of services to '
 +'our private clients, including Wills, Probate and '
 +'Succession Planning, Employment and Residential Te'
 +'nancies and Conveyancing.</p>'
var i=0

function alterPractice(str){
	//if IE 4+
	if (document.all)
		pracont.innerHTML=practice[str];
		//else if NS 4
		else if (document.layers){
		document.ns4page.document.ns4page2.
		document.write(practice[str]);
		document.ns4page.document.ns4page2.
		document.close();
	}
	//else if NS 6 (supports new DOM)
	else if (document.getElementById){
		rng = document.createRange();
		el = document.getElementById("pracont");
		rng.setStartBefore(el);
		htmlFrag = rng.createContextualFragment(practice[str]);
		while (el.hasChildNodes())
		el.removeChild(el.lastChild);
		el.appendChild(htmlFrag);
	}
	
	if (i==practice.length-1)
	i=0
	else
	i++
}