






/*
$('yourEl').addEvent('click', function(e) {
	e = new Event(e).stop(); // .stop method will stop the event from propagating
});

*/

  function LoadContentNavMenu()
  {
        var sideBar_activeIndex = GetElementWithCssIndex('#sidemenu_bot .a1tog','a1tog_Active');    

        new Accordion('.a1tog', '.a1con', {alwaysHide:true, display:sideBar_activeIndex}) // , $('sidemenu_bot')

        .addEvent('onBackground',function(toggler,element){
            element.setStyle('height',element.offsetHeight);
        });



    new Accordion('.a2tog', '.a2con', {start:'closed', alwaysHide:true}) // , $('sidemenu_bot')
    .addEvent('onActive', function(toggler,element){
        element.setStyle('height',element.offsetHeight);
//        console.log('onActive '+toggler.getParent());
//         toggler.getParent().setStyle('height',element.offsetHeight);
    });
 
  }


window.addEvent("load", LoadContentNavMenu);
