$(function (){

	var found = false;
	$('.sidebar > ul > li > a').each(function (){
		if(location.pathname + location.search == $(this).attr('href')){
			$(this).addClass('active');
			found = true;
			return false;
		}
	})

});
