// jQuery Document

$(document).ready(function(){
						   
   $('#side-nav li').children().addClass('hide');
						   
   if ($('.selected').length>0){
	  $('.selected').parentsUntil('#side-nav').each(function(){
	  if (this.tagName == 'LI') {
		  $(this).children('ul, a').removeClass('hide');
	  }
    });  
  }
});
