BAAddOnload(function(){
	(document.getElementsByClassNameBA("entry-summary", "div")).forEach(function (node) {
		node.addEventListenerBA("click", function(e){
			var title = this.getElementsByClassNameBA("entry-title")[0];
			if (!title) return;
			var link = title.getElementsByTagNameBA("a")[0];
			if (!link || !link.getAttributeBA("href")) return;
			location.href = link.getAttributeBA("href");
		}, node);
	});
});