// JavaScript Document
function swapBot(tab)
			{
			//=================Declairing OFF and ON buttons status =================
				var butOFF = new Array(7);
				var butON  = new Array(7);
			// ---------------Setting The oFF state buttons -------------------------
				butOFF[0] = "images/index_11.jpg";
				butOFF[1] = "images/index_14.jpg";
				butOFF[2] = "images/index_18.jpg";
				butOFF[3] = "images/index_19.jpg";
				butOFF[4] = "images/index_21.jpg";
				butOFF[5] = "images/index_24.jpg";
				butOFF[6] = "images/index_25.jpg";
				
			// ---------------Setting the ON state buttons ---------------------------
				butON[0] = "images/index_11_on.jpg";
				butON[1] = "images/index_14_on.jpg";
				butON[2] = "images/index_18_on.jpg";
				butON[3] = "images/index_19_on.jpg";
				butON[4] = "images/index_21_on.jpg";
				butON[5] = "images/index_24_on.jpg";
				butON[6] = "images/index_25_on.jpg";
				
			// =============== Swapping the button s (Home)-----------------------
				if (tab == 1)
				document.images["img1"].src = butON[0];
				else if(tab==2)
				document.images["img1"].src = butOFF[0];
			// =============== Swapping the button s (About Us)----------------
				if (tab == 3)
				document.images["img2"].src = butON[1];
				else if(tab==4)
				document.images["img2"].src = butOFF[1];
			// =============== Swapping the button s (Line Card)----------------
				if (tab == 5)
				document.images["img3"].src = butON[2];
				else if(tab==6)
				document.images["img3"].src = butOFF[2];
			// =============== Swapping the button s (Product Catalog)----------------
				if (tab == 7)
				document.images["img4"].src = butON[3];
				else if(tab==8)
				document.images["img4"].src = butOFF[3];
			// =============== Swapping the button s (Hot Products)----------------
				if (tab == 9)
				document.images["img5"].src = butON[4];
				else if(tab==10)
				document.images["img5"].src = butOFF[4];
			// =============== Swapping the button s (Sign Up)----------------
				if (tab == 11)
				document.images["img6"].src = butON[5];
				else if(tab==12)
				document.images["img6"].src = butOFF[5];
			// =============== Swapping the button s (Send Requiement)----------------
				if (tab == 13)
				document.images["img7"].src = butON[6];
				else if(tab==14)
				document.images["img7"].src = butOFF[6];
							
		function foc()
			{
				document.form1.srch.focus();
			}
			}