var i=0var intHidevar speed_hide=10var speed_show=3var i2=0var intHide2var speed_hide2=4var speed_show2=3var no_menu2=4// Nye konfigurerbare menyerfunction showmenu_ex(no_menu,m_id){	//alert("show_ex(" + no_menu+ "," + m_id + ")")	clearInterval(intHide)	intShow=setInterval("show_ex(" + no_menu+ "," + "'"+m_id + "')",1)}function show_ex(no_menu,m_id){if (i>-(no_menu*17))	{		i=i-speed_show		document.all(m_id).style.bottom=i	}}function hidemenu_ex(m_id){	clearInterval(intShow)	intHide=setInterval("hide_ex('" + m_id+"')",1)	//intHide = hide_ex(m_id)	}function hide_ex(m_id){	if (i<0)	{		i=i+speed_hide		document.all(m_id).style.bottom=i	}}// End Nye konfigurerbare menyerfunction show(no_menu){if (i>-(no_menu*17))	{	i=i-speed_show	document.all("menu").style.bottom=i	}}function showmenu(no_menu){clearInterval(intHide)intShow=setInterval("show(" + no_menu+")",1)}function hide(){if (i<0)	{	i=i+speed_hide	document.all("menu").style.bottom=i	}}function hidemenu(){clearInterval(intShow)intHide=setInterval("hide()",1)}function show2(no_menu2){if (i2>-(no_menu2*17))	{	i2=i2-speed_show2	document.all("menu2").style.bottom=i2	}}function showmenu2(no_menu2){clearInterval(intHide2)intShow2=setInterval("show2(" + no_menu2+")",1)}function hide2(){if (i2<0)	{	i2=i2+speed_hide2	document.all("menu2").style.bottom=i2	}}function hidemenu2(){clearInterval(intShow2)intHide2=setInterval("hide2()",1)}
