// JavaScript Document
								var cur_pos = 1;
								var arr_img = new Array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20);
								var arr_alt = new Array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20);
								arr_img[1] = new Image();
								arr_img[2] = new Image();
								arr_img[3] = new Image();
								arr_img[4] = new Image();
								arr_img[5] = new Image();
								arr_img[6] = new Image();
								arr_img[7] = new Image();
								arr_img[8] = new Image();
								arr_img[9] = new Image();
								arr_img[10] = new Image();
								arr_img[11] = new Image();
								arr_img[12] = new Image();
								arr_img[13] = new Image();
								arr_img[14] = new Image();
								arr_img[15] = new Image();
								arr_img[16] = new Image();
								arr_img[17] = new Image();
								arr_img[18] = new Image();
								arr_img[19] = new Image();
								arr_img[20] = new Image();
								arr_img[21] = new Image();
								//arr_img[20] = new Image();
								
								arr_img[1].src = images_dir+"/projects/img_prj-adulawo.gif"; 
								arr_alt[1] = "Adulawo";
								//arr_img[2].src = images_dir+"/projects/img_prj-gap.jpg"; 
								//arr_alt[2] = "GapBridge Microfinance";
								arr_img[2].src = images_dir+"/projects/img_prj-poise.jpg";
								arr_alt[2] = "Poise Nigeria";

								arr_img[3].src = images_dir+"/projects/img_prj-aplays.jpg";
								arr_alt[3] = "Africaplays.com";
								arr_img[4].src = images_dir+"/projects/img_prj-dcl.jpg";
								arr_alt[4] = "Deep City Ltd";
								arr_img[5].src = images_dir+"/projects/img_prj-dgc.jpg";
								arr_alt[5] = "Done Group of Companies";
								arr_img[6].src = images_dir+"/projects/img_prj-doeste.jpg";
								arr_alt[6] = "Do-Estdot Group of Schools";
								arr_img[7].src = images_dir+"/projects/img_prj-eclats.jpg";
								arr_alt[7] = "Eclats Media";
								arr_img[8].src = images_dir+"/projects/img_prj-kunimed.jpg";
								arr_alt[8] = "Kunimed Pharmachem Ltd";
								arr_img[9].src = images_dir+"/projects/img_prj-minl.jpg";
								arr_alt[9] = "MINL Ltd";
								arr_img[10].src = images_dir+"/projects/img_prj-msl.jpg";
								arr_alt[10] = "MobiShake Solutions Ltd";
								arr_img[11].src = images_dir+"/projects/img_prj-mws.jpg";
								arr_alt[11] = "MyWorkShoes.com";
								arr_img[12].src = images_dir+"/projects/img_prj-niji.jpg";
								arr_alt[12] = "Niji-Lukas Nigeria Ltd";
								//arr_img[13].src = images_dir+"/projects/img_prj-olajay.jpg";
								//arr_alt[13] = "Olajay Projects Ltd";
								arr_img[13].src = images_dir+"/projects/img_prj-ripples.jpg";
								arr_alt[13] = "Ripples Motel &amp; Nite Club";
								arr_img[14].src = images_dir+"/projects/img_prj-splendour.jpg";
								arr_alt[14] = "Splendour Events Ltd";
								arr_img[15].src = images_dir+"/projects/img_prj-tisco.jpg";
								arr_alt[15] = "Tisco Nigeria";
								arr_img[16].src = images_dir+"/projects/img_prj-toime.jpg";
								arr_alt[16] = "Toime Nigeria Ltd";
								arr_img[17].src = images_dir+"/projects/img_prj-umfb.jpg";
								arr_alt[17] = "Unique Microfinance Bank";
								arr_img[18].src = images_dir+"/projects/img_prj-tca.jpg";
								arr_alt[18] = "The Conquerors' Assembly";
								arr_img[19].src = images_dir+"/projects/img_prj-mantrac.jpg";
								arr_alt[19] = "Mantrac Nigeria";
								arr_img[20].src = images_dir+"/projects/img_prj-vmfb.gif";
								arr_alt[20] = "Vining Micro Finance Bank";

								document.getElementById("img_prj_plc").src = arr_img[1].src;
								document.getElementById("sp_prj_alt").innerHTML = arr_alt[1];
								
								function next_img(){
									if(cur_pos<20){
										cur_pos = cur_pos+1;
									} else if(cur_pos==20){
										cur_pos = 1;
									}
									document.getElementById("img_prj_plc").src = arr_img[cur_pos].src;
									document.getElementById("sp_prj_alt").innerHTML = arr_alt[cur_pos];
								}

								function prev_img(){
									if(cur_pos==1){
										cur_pos = 20;
									} else if(cur_pos<21){
										cur_pos = cur_pos-1;
									}
									document.getElementById("img_prj_plc").src = arr_img[cur_pos].src;
									document.getElementById("sp_prj_alt").innerHTML = arr_alt[cur_pos];
								}

