d=document;
page=location.href;
pagename=page.substring(page.lastIndexOf('/')+1, page.length);
main=page.substring(0, page.lastIndexOf('/')-2);

l=new Array ("en","lv","ru");
d.write("<table width=125px><tr>");
for (i=0; i<l.length; i++)
	{
	d.write("<td width=33% align=center onmouseover=\"this.className='menucolorover';\" onmouseout=\"this.className='menucoloroff';\"><p><a href='"+main+l[i]+"/"+pagename+"'>"+l[i]+"</a></p></td>");
	}
d.write("</tr></table>");
