function init_rollover()
{
    self.catalogleftcells = map(function(n){
                                    var m = n.parentNode;
                                    m.setAttribute("sectionid", n.getAttribute("sectionid"));
                                    return m;
                                },
                                filter(function(n){ return n.getAttribute("brands") ? true : false; },
                                       document.getElementsByTagName("span")));
    if(self.sectionselected<=1 && the_params[0]>1 && the_params[1]>1){
        self.sectionselected = the_params[1];
    }
    if(the_que.met == 'index' && the_params[0]>1) {
        self.sectionselected = the_params[0];
    }
    foreach(
        function(n){
            n.onmouseover = function(){
                n.className = "m_on";
            };
            n.onmouseout =  function(){
                try {
                    if(n.getAttribute("sectionid")!=self.sectionselected) n.className = "m_off";
                } catch(e) {
                    n.className = "m_off";
                }
            };
        },
        catalogleftcells);
}

window.init_stack.push(init_rollover);