	  pb=new Array(10);
		ab=new Array(10);
		act=new Array(10);
		nm=new Array(10);
		nm[0]="aboutcompany.php"
		nm[1]="tech_over.php";
		nm[2]="subsys.php";
		nm[3]="loc.php";
		nm[4]="branch.php";
		nm[5]="client.php";
		nm[6]="#";
		nm[7]="favor.php";
		nm[8]="news.php";
		nm[9]="http://www.septimaconsulting.com/";
		i=0;
		while (i<=9) 
		 {
		   pb[i]=new Image();
			 ab[i]=new Image();
		   pb[i].src="images/button"+i+".gif";
			 ab[i].src="images/abutton"+i+".gif";
			 act[i]=false;
			 i++;
		 };
							
		function activate(actname,n)
		 {
		   i=0;
   		 while (i<=9)
   		 {
			  if (act[i]) act[i]=false;
				i++;
  		 };
			 act[n]=true;
			 actname.src=ab[n].src;
			 document.location=nm[n];
		 };
		 
		function over(actname,n)
		 {
		  if (act[n]==false) actname.src=ab[n].src;
		 };
		
		function out(actname,n)
		 {
		  if (act[n]==false) actname.src=pb[n].src;
		 };
		 
		 function DrawButtons (k,l)
		 {
		  i=k;
		  while (i<=l)
  		 {
			   document.write("<tr><td colspan=2>");
				 document.write("<a href='' OnMouseOver='over(im"+i+","+i+");' OnMouseOut='out(im"+i+","+i+");' OnClick='activate(im"+i+","+i+");return false;'><img src=\""+pb[i].src+"\" border='0' name='im"+i+"'></a>");
				 document.write("</td></tr>");
				 document.write("<tr><td colspan=2><img src='images/white.gif' width='188' height='1'></td></tr>");
				 i++;
	  	 };
		 }; 

