// HEADER
// **********************************************

// Scrolling Float Menu - Cross-Browser
var isOverBut02 = 0;
var obj=new Object();
obj = {
	T:300, // Timer
	smenu:"",
	obj:function() {
		this.smenu=document.getElementById('smenu');
	}
}
obj.scroller=function() {
	obj.smenu.style.top = (navigator.appName=="Netscape")?window.pageYOffset:document.getElementsByTagName('body').item(0).scrollTop;
	setTimeout("obj.scroller();",obj.T);
}
window.onload=main;
function main() {
	with(obj) {
		obj();
		scroller();
		}
}

// SHOW MENU
function showMenu() {
root = parseInt(document.getElementById('smenu').style.top);
document.getElementById('meniul').style.top = root + 18 + "px";
document.getElementById('meniul').style.visibility='visible';
}

// HIDE MENU
function hideMenu() {
if (isOverBut02 == 1) {return;}
document.getElementById('meniul').style.visibility='hidden';
}