var start_time=2000;var between_time=300;var shown_len=16;var step=4;var time=20;var start_position=21;var space=4;function eMove(c,b){c.direction=b;if(b=="down"){var a=function(){if(c.direction=="down"&&c.offsetTop<0){c.style.top=(parseInt(c.offsetTop)+step)+"px";setTimeout(a,time)}};a()}else{var d=function(){if(c.direction=="up"&&c.offsetTop>(shown_len-parseInt(c.offsetHeight))){c.style.top=(parseInt(c.offsetTop)-step)+"px";setTimeout(d,time)}};d()}}function eShow(c){var a=par.childNodes[c];var b="eShow("+c+")";if(a.offsetTop<(shown_len-parseInt(a.offsetHeight))){a.style.top=(parseInt(a.offsetTop)+1)+"px";setTimeout(b,time)}}function eStart(b){var a=par.childNodes[b];a.style.display="block";a.style.top="-"+(parseInt(a.offsetHeight))+"px";eShow(b)}function GetObject(a){if(document.all){return document.all[a]}return document.getElementById(a)}par=GetObject("emenu");par.style.display="block";for(i in par.childNodes){if(par.childNodes[i].tagName&&par.childNodes[i].tagName.toLowerCase()=="div"){var el=par.childNodes[i];el.onmouseover=function(){eMove(this,"down")};el.onmouseout=function(){eMove(this,"up")};el.style.position="absolute";el.style.left=start_position+"px";start_position+=el.offsetWidth+space;el.style.cursor="pointer";el.style.display="none";var f="eStart("+i+")";setTimeout(f,start_time);start_time+=between_time}};
