/* Script moving object */




function menuOver(that) {
	that.oldClassName = that.className;
	that.className += 'over';
	self.status = that.firstChild.href;
}
function menuOut(that) {
	if(that.oldClassName) that.className = that.oldClassName;
	else that.className = 'menucontent1';
	self.status = '';
}
function menuClick(that) {
	document.location = get_href(that);
	return true;
}
function get_href(node)
{
	if (typeof node.href != 'undefined')
		get_href.href = node.href;
	if (node.childNodes != null)
		for (var i = 0; i < node.childNodes.length; ++i)
			get_href(node.childNodes.item(i));
	return (typeof get_href.href != 'undefined') ? get_href.href : '#';
}



function showmenu(elmnt)
{
var x=document.getElementById(elmnt)
x.style.visibility="visible"
}
function hidemenu(elmnt)
{
var y=document.getElementById(elmnt)
y.style.visibility="hidden"
}


  var x = 0
  var y = 0
  var z = 140
  var delay = 70
  var text = ""
  var text1 = ""

  while (y ++ < z) {
  text = " " + text;
  }

  function scroller() {
  window.status = text.substring(x++, text.length);
  if (x == text.length)  {
  x = 0;
  }
  setTimeout("scroller()", delay);
  }

  scroller();
