// JavaScript Document
menuArray=["Anasayfa","Hakkımızda","Ürünler","Projeler","Hizmetler","Danışmanlık","İletişim","English"];
menuLinkArray=["index.html","hakkimizda.html","Urunler.html","projeler.html","Hizmetler.html","Danismanlik.html","iletisim.html","indexen.html"];
function changeBG(no){
	document.getElementById("td"+no).style.backgroundColor='#000099';
}

function changeBG0(no){
	document.getElementById("td"+no).style.backgroundColor='#000000';
}

function resetBG(no){
	document.getElementById("td"+no).style.backgroundColor='#006599';
}
for(var i=0;i<menuArray.length;i++){
      if( j==i)	
        document.write("<td id='td"+i+"' bgcolor='#000000' width='150px' align='center'>");
	
      else 
        document.write("<td id='td"+i+"' bgcolor='#006599' width='150px' align='center'>");

      if( j==i)	
        document.write("<a class='menu' href="+menuLinkArray[i]+" onmouseover='javascript:changeBG("+i+")'  onmouseout='javascript:changeBG0("+i+")'>");
      else
        document.write("<a class='menu' href="+menuLinkArray[i]+" onmouseover='javascript:changeBG("+i+")'  onmouseout='javascript:resetBG("+i+")'>");

	document.write(menuArray[i]);
	document.write("</a>");
	document.write("</td>");
}
