//------------------------------------------
// BlackRedYellow
// Menubar JS File
//
// by spacedvest 3/2/05
//------------------------------------------

   <!--//--><![CDATA[//><!--
    leftList = function() {
        if (document.all&&document.getElementById) {
            navRoot = document.getElementById("leftmenu");
            for (i=0; i<navRoot.childNodes.length; i++) {
                node = navRoot.childNodes[i];
                if (node.nodeName=="LI") {
                    node.onmouseover=function() {
                        this.className+=" over";
                    }
                    node.onmouseout=function() {
                        this.className=this.className.replace(" over", "");
                    }
                }
            }
        }
    }
   //--><!]]>

   <!--//--><![CDATA[//><!--
    rightList = function() {
        if (document.all&&document.getElementById) {
            navRoot = document.getElementById("rightmenu");
            for (i=0; i<navRoot.childNodes.length; i++) {
                node = navRoot.childNodes[i];
                if (node.nodeName=="LI") {
                    node.onmouseover=function() {
                        this.className+=" over";
                    }
                    node.onmouseout=function() {
                        this.className=this.className.replace(" over", "");
                    }
                }
            }
        }
    }
   //--><!]]>

window.onload=function(){
 leftList();
 rightList(); 
}

//==========================================
// Pop up MyAssistant window
//==========================================

function buddy_pop()
{
	window.open( 'http://www.blackredyellow.com/bryforums/index.php?act=buddy','BrowserBuddy','width=250,height=500,resizable=yes,scrollbars=yes');
}
