function nowe_menu_close(n) {
  
    s = document.getElementById('nowe_submenu_'+n);
    s.style.display = 'none';
   
    link = document.getElementById('top_link_'+n);
    link.style.display = 'block';
    
    link_h = document.getElementById('top_link_hover_'+n);
    link_h.style.display = 'none';
   
    
    tl = document.getElementById('top_link_left_'+n);
    tl.style.display = 'none';
    tr = document.getElementById('top_link_right_'+n);
    tr.style.display = 'none';
}

function nowe_menu_open(n) {
  
    s = document.getElementById('nowe_submenu_'+n);
    s.style.display = 'block';
    
    link = document.getElementById('top_link_'+n);
    link.style.display = 'none';
    
    link_h = document.getElementById('top_link_hover_'+n);
    link_h.style.display = 'block';
    
    tl = document.getElementById('top_link_left_'+n);
    tl.style.display = 'block';
    
    tr = document.getElementById('top_link_right_'+n);
    tr.style.display = 'block';
}

function nowe_menu_open_x(n) {
  
    link = document.getElementById('top_link_'+n);
    link.style.display = 'none';
    
    link_h = document.getElementById('top_link_hover_'+n);
    link_h.style.display = 'block';
    
    tl = document.getElementById('top_link_left_'+n);
    tl.style.display = 'block';
    
    tr = document.getElementById('top_link_right_'+n);
    tr.style.display = 'block';
    
}
function nowe_menu_close_x(n) {
  
    link = document.getElementById('top_link_'+n);
    link.style.display = 'block';
    
    link_h = document.getElementById('top_link_hover_'+n);
    link_h.style.display = 'none';
    
       tl = document.getElementById('top_link_left_'+n);
    tl.style.display = 'none';
    tr = document.getElementById('top_link_right_'+n);
    tr.style.display = 'none';
}

