function show_top_menu(menu_act, eng)
{

var menu = '';

if (eng)  // английское меню
{

	menu +=		'<table height=31 border=0 cellpadding=0 cellspacing=0>';
	menu +=		'<tr>';
if (menu_act == 'about') menu +=		'<td style="padding-left: 32;"><img src="images/about_eng.gif" width=129 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td style="padding-left: 32;"><a href="about_eng.html" onfocus="blur();"><img src="images/about_off_eng.gif" width=129 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/about_on_eng.gif";\' onmouseout=\'this.src="images/about_off_eng.gif";\'></a></td>';
if (menu_act == 'news') menu +=		'<td><img src="images/news_eng.gif" width=110 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="news_eng.html" onfocus="blur();"><img src="images/news_off_eng.gif" width=110 height=31 alt="" border=0 onmouseover=\'this.src="images/news_on_eng.gif";\' onmouseout=\'this.src="images/news_off_eng.gif";\'></a></td>';
if (menu_act == 'products') menu +=		'<td><img src="images/prod_eng.gif" width=122 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="products_eng.html" onfocus="blur();"><img src="images/prod_off_eng.gif" width=122 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/prod_on_eng.gif";\' onmouseout=\'this.src="images/prod_off_eng.gif";\'></a></td>';
if (menu_act == 'vakancii') menu +=		'<td><img src="images/vak_eng.gif" width=118 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="vakancii_eng.html" onfocus="blur();"><img src="images/vak_off_eng.gif" width=118 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/vak_on_eng.gif";\' onmouseout=\'this.src="images/vak_off_eng.gif";\'></a></td>';
if (menu_act == 'cont') menu +=		'<td><img src="images/cont_eng.gif" width=114 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="cont_eng.html" onfocus="blur();"><img src="images/cont_off_eng.gif" width=114 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/cont_on_eng.gif";\' onmouseout=\'this.src="images/cont_off_eng.gif";\'></a></td>';
	menu +=		'</tr>';
	menu +=		'</table>';

} else { // русское меню

	menu +=		'<table height=31 border=0 cellpadding=0 cellspacing=0>';
	menu +=		'<tr>';
if (menu_act == 'about') menu +=		'<td style="padding-left: 32;"><img src="images/about.gif" width=129 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td style="padding-left: 32;"><a href="about.html" onfocus="blur();"><img src="images/about_off.gif" width=129 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/about_on.gif";\' onmouseout=\'this.src="images/about_off.gif";\'></a></td>';
if (menu_act == 'news') menu +=		'<td><img src="images/news.gif" width=110 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="news.html" onfocus="blur();"><img src="images/news_off.gif" width=110 height=31 alt="" border=0 onmouseover=\'this.src="images/news_on.gif";\' onmouseout=\'this.src="images/news_off.gif";\'></a></td>';
if (menu_act == 'products') menu +=		'<td><img src="images/prod.gif" width=122 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="products.html" onfocus="blur();"><img src="images/prod_off.gif" width=122 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/prod_on.gif";\' onmouseout=\'this.src="images/prod_off.gif";\'></a></td>';
if (menu_act == 'vakancii') menu +=		'<td><img src="images/vak.gif" width=118 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="vakancii.html" onfocus="blur();"><img src="images/vak_off.gif" width=118 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/vak_on.gif";\' onmouseout=\'this.src="images/vak_off.gif";\'></a></td>';
if (menu_act == 'cont') menu +=		'<td><img src="images/cont.gif" width=114 height=31 alt="" border=0 border=0></td>';
else 	menu +=		'<td><a href="cont.html" onfocus="blur();"><img src="images/cont_off.gif" width=114 height=31 alt="" border=0 border=0 onmouseover=\'this.src="images/cont_on.gif";\' onmouseout=\'this.src="images/cont_off.gif";\'></a></td>';
	menu +=		'</tr>';
	menu +=		'</table>';

}


document.write(menu);
	
}

