var bottommenu={
menucreate: function menucreate()
		{
		maindiv=document.createElement('div');
		maindiv.className="bottom_menu_fixed";
		maindiv.style.width="100%";
		maindiv.style.right="0px";
		maindiv.style.bottom="-30px";
		centr=document.createElement('center');
		subdiv=document.createElement('div');
		subdiv.style.width="950px";	
		subdiv.style.height="30px";
		subdiv.style.position="relative";
		subdiv.style.background="url('/menu/menu.png') repeat-x 0px -120px";
		subdiv1=document.createElement('div');
		subdiv1.style.width="7px";
		subdiv1.style.height="30px";
		subdiv1.style.background="url('/menu/menu.png') repeat-x 0px -150px";
		subdiv1.style.marginLeft="-7px";
		subdiv1.style.padding="0px";
		subdiv1.style.display="block";
		subdiv1.style.position="absolute";
		subdiv1.style.top="0px";
		subdiv1.style.left="0px";
		subdiv2=document.createElement('div');
		subdiv2.style.width="30px";
		subdiv2.style.height="30px";
		subdiv2.style.background="url('/menu/menu.png') repeat-x 0px 0px";
		subdiv2.style.position="absolute";
		subdiv2.style.right="-5px";
		subdiv2.style.cursor="hand";
		subdiv2.style.cursor="pointer";
		subdiv2.onclick=function () {bottommenu.menudown();}
		subdiv2.style.top="0px";
		subdiv.appendChild(subdiv1);
		subdiv.appendChild(subdiv2);
		table_1=document.createElement('table');
		tbody_1=document.createElement('tbody');
		tr_1=document.createElement('tr');
		tr_1.height="30";
		td_1=document.createElement('td');
		td_1.innerHTML="<a href='http://www.shneks.ru' class='bottom_menu_link'><img src='/menu/screw.gif' style='vertical-align:middle' />&nbsp;&nbsp;Шнеки</a>";
		td_1.style.lineHeight="30px";
		tr_1.appendChild(td_1);
		td_1_0=document.createElement('td');
		td_1_0.className="bottom_menu_separator";
		tr_1.appendChild(td_1_0);
		td_2=document.createElement('td');
		td_2.innerHTML="<a href='http://www.zatvor.org' class='bottom_menu_link'><img src='/menu/zatvor.gif' style='vertical-align:middle' />&nbsp;&nbsp;Затворы</a>";
		td_2.style.lineHeight="30px";
		tr_1.appendChild(td_2);
		td_2_0=document.createElement('td');
		td_2_0.className="bottom_menu_separator";
		tr_1.appendChild(td_2_0);
		td_3=document.createElement('td');
		td_3.innerHTML="<a href='http://www.promfiltr.com' class='bottom_menu_link'><img src='/menu/filtr.gif' style='vertical-align:middle' />&nbsp;&nbsp;Фильтра</a>";
		td_3.style.lineHeight="30px";
		tr_1.appendChild(td_3);
		td_3_0=document.createElement('td');
		td_3_0.className="bottom_menu_separator";
		tr_1.appendChild(td_3_0);
		td_4=document.createElement('td');
		td_4.innerHTML="<a href='http://www.sicoma.ru' class='bottom_menu_link' style='color:#000'><img src='/menu/mixer.gif' style='vertical-align:middle' />&nbsp;&nbsp;Бетоносмесители</a>";
		td_4.style.lineHeight="30px";
		tr_1.appendChild(td_4);
		td_4_0=document.createElement('td');
		td_4_0.className="bottom_menu_separator";
		tr_1.appendChild(td_4_0);
		td_5=document.createElement('td');
		td_5.innerHTML="<a href='http://www.promvibrator.ru' class='bottom_menu_link'><img src='/menu/vibrator.gif' style='vertical-align:middle' />&nbsp;&nbsp;Вибраторы</a>";
		td_5.style.lineHeight="30px";
		tr_1.appendChild(td_5);
		td_5_0=document.createElement('td');
		td_5_0.className="bottom_menu_separator";
		tr_1.appendChild(td_5_0);
		td_6=document.createElement('td');
		td_6.innerHTML="<a href='http://www.silosa.ru' class='bottom_menu_link'><img src='/menu/silosa.gif' style='vertical-align:middle' />&nbsp;&nbsp;Силоса</a>";
		td_6.style.lineHeight="30px";
		tr_1.appendChild(td_6);
		td_6_0=document.createElement('td');
		td_6_0.className="bottom_menu_separator";
		tr_1.appendChild(td_6_0);
		td_7=document.createElement('td');
		td_7.innerHTML="<a href='http://www.hydronix.ru' class='bottom_menu_link'><img src='/menu/hydronix.gif' style='vertical-align:middle' />&nbsp;&nbsp;Влагомеры</a>";
		td_7.style.lineHeight="30px";
		tr_1.appendChild(td_7);
		td_7_0=document.createElement('td');
		td_7_0.className="bottom_menu_separator";
		tr_1.appendChild(td_7_0);
		td_8=document.createElement('td');
		td_8.innerHTML="<a href='http://www.drymixer.ru' class='bottom_menu_link'><img src='/menu/drymixer.gif' style='vertical-align:middle' />&nbsp;&nbsp;Смесители</a>";
		td_8.style.lineHeight="30px";
		tr_1.appendChild(td_8);
		td_8_0=document.createElement('td');
		td_8_0.className="bottom_menu_separator";
		tr_1.appendChild(td_8_0);
		td_9=document.createElement('td');
		td_9.innerHTML="&nbsp;&nbsp;<strong>+7(495)&nbsp;962-15-88</strong>";
		td_9.style.lineHeight="30px";
		tr_1.appendChild(td_9);
		tbody_1.appendChild(tr_1);
		table_1.appendChild(tbody_1);
		subdiv.appendChild(table_1);
		centr.appendChild(subdiv);
		maindiv.appendChild(centr);
		this.handlediv=maindiv;
		document.body.appendChild(maindiv);
		},
menuup: function ()
	{
	if (parseInt(this.handlediv.style.bottom)<0) {this.handlediv.style.bottom=eval(parseInt(this.handlediv.style.bottom)+1)+"px";
	setTimeout("bottommenu.menuup()",70);}
	},
menudown: function ()
	{
	if (parseInt(this.handlediv.style.bottom)>-30) {this.handlediv.style.bottom=eval(parseInt(this.handlediv.style.bottom)-1)+"px";
	setTimeout("bottommenu.menudown()",70);}
	},
handlediv:null
}
bottommenu.menucreate();
bottommenu.menuup();

