$(document).ready(function() {
	$(".openList > li > strong > span > a").click(function(){
		var parentEls = $(this).parents().map(function () { 
			if (this.tagName == 'LI') {
				$(this).toggleClass("active"); 
			}
		});

		return false;
	});
});
