		 $(document).ready(function() {
			if (page) {
				$('#sidebar a').each(function(index) {
					if ($(this).text() == page) {
						$(this).attr('class','active');
					} else if ($(this).text() == '- ' + page) {
						$(this).attr('class','active');
						$(this).closest('ul').children('a').eq(0).attr('class','active');
					}
				});
			}
		});
