var strPath = "";
var strIMGPath = strPath+"images/";

function swImg(img)
{
	var str = img.src;
	var m = str.lastIndexOf('/');
	var n = str.lastIndexOf('.');
	str=str.substring(m+1, n);
	var l = str.length-1;
	var ch= str.charAt(l);
	str=str.substring(0, l) + (ch=='1' ? '2' : '1');
	img.src=strIMGPath + str + ".gif";
}

var arrIdx=Array("index","news","faq","download","buy","contact","awards","link","affiliates");
var arrAlt=Array("AllWeb Software Home Page","The latest news of products","Questions and Answers","Download programs","Buy products online","Email to us","Awards","Other links","Be our affiliates and earn money");
var strIdx="<br>";
for (var i=0; i<arrIdx.length; i++)
{
	strIdx+="<a href="+strPath+arrIdx[i]+".htm onmouseover='swImg("+arrIdx[i]+");' onmouseout='swImg("+arrIdx[i]+");'><img id="+arrIdx[i]+" border=0 src="+strIMGPath+"button1.gif><img border=0 src="+strIMGPath+arrIdx[i]+".gif alt='"+arrAlt[i]+"'></a><br><br>";
}
strIdx+="<span class=hide><img src="+strIMGPath+"button2.gif></span>";
document.write(strIdx);
