function bringMenubarForward()
{
	var menubar_obj=document.all? document.all.spryMenubar : document.getElementById("spryMenubar");
	
	menubar_obj.style.zIndex=8;
}

function sendMenubarBack()
{
	var menubar_obj=document.all? document.all.spryMenubar : document.getElementById("spryMenubar");
	
	menubar_obj.style.zIndex=3;
}

