//-- topNav-->

// Last Modified: 28/07/2006

function displayTopNav(){
var str='';
str+='<table cellpadding=2>';
str+='	<tr>';
str+='		<td class="topnav" 	onmouseover="javascript:changeBGcolor(\'over\',this);" ';
str+='							onmouseout ="javascript:changeBGcolor(\'out\',this);" ';
str+='							onclick="window.location = \'index.htm\';">&nbsp;&nbsp;Home&nbsp;&nbsp;<\/td>			';
str+='		<td class="topnav" 	onmouseover="javascript:changeBGcolor(\'over\',this);" ';
str+='							onmouseout ="javascript:changeBGcolor(\'out\',this);" ';
str+='							onclick="window.location = \'aboutus.htm\';">&nbsp;&nbsp;About Us&nbsp;&nbsp;<\/td>			';
str+='		<td class="topnav" 	onmouseover="javascript:changeBGcolor(\'over\',this);" ';
str+='							onmouseout ="javascript:changeBGcolor(\'out\',this);" ';
str+='							onclick="window.location = \'contactus.htm\';">&nbsp;&nbsp;Contact Us&nbsp;&nbsp;<\/td>			';
str+='		<td class="topnav" 	onmouseover="javascript:changeBGcolor(\'over\',this);" ';
str+='							onmouseout ="javascript:changeBGcolor(\'out\',this);" ';
str+='							onclick="window.location = \'testimonials.htm\';">&nbsp;&nbsp;Testimonials&nbsp;&nbsp;<\/td>		';
str+='	<\/tr>		';
str+='<\/table>	';
document.write(str);
}



