jQuery(document).ready(function(){

    // -------------------------------------------------------------------------
    // SIDE NAVIGATION MENU COLLAPSING
    // -------------------------------------------------------------------------

		var slideto = jQuery('.plant-nav')[0];
		var h = decodeURIComponent(window.location.hash);
		if(h.match(/^#show/)) {
			slideto = '#navid-'+(h.split(':'))[1];	
		}
    jQuery(slideto).parent().parent().parent().addClass('active');
    
    jQuery('.cms-page-view .sidebar  ul.groups > li:not(.active) ul').hide();

    jQuery('.cms-page-view .sidebar  ul.groups > li > a').click( function(ev) {
        ev.preventDefault();
        jQuery(this).parent().siblings().children('ul').slideUp();
        jQuery(this).parent().children('ul').slideDown();        
    });

     
}); // end document.ready

