function holdSideMenuPosition(){
	var thePath = location.pathname;
	$('ul.sidenav li a').each( function(){
		if(thePath.indexOf($(this).attr('href')) != -1 ){
			if($(this).attr('href') == thePath) {
				$(this).addClass('active');
			} else {
				$(this).parent('li').addClass('active');
				$(this).next('div').show();
			}
		}
	});	
}

$(document).ready( function(){
	holdSideMenuPosition();
});

