// TODO: 
// add 
// test all browsers
function mark_path() 
{

    var anchors = $$('#sub-side-list a');
    var cpath = location.pathname;

    if( cpath.indexOf('/') != 0 )
        cpath = '/'+cpath;

    var parts = cpath.split('/');
    parts.pop() 
    var ppath = parts.join('/');
    parts.pop() 
    var pppath = parts.join('/');

    for(i=0;i<anchors.length;i++)
    {
        try {
          var ckp = anchors[i].pathname;
          if( ckp.indexOf('/') != 0 )
              ckp = '/'+ckp;
         
          if( ckp == cpath | ckp == ppath  | ckp == pppath )
          {
              
                  anchors[i].style.color='#333';
          }
        } catch(e) {}
    }

}

window.addEvent('domready',  mark_path);

