$(function() {
	$('div#sidebarNav ul.nav-vertical li a').each(function() {
		$this = $(this);
		if ( location.href.match(new RegExp($this.attr('href').replace(/\?.*/, '') + '$')) ) {
			$this.parent().addClass('current').html($this.text());
			return false;
		}
	});
});