$('aside .nav.nav-list a').each(function(i,item){

	if($(item).attr('href') === OUC.path){
		$(item).parent().addClass('active');
	}
});