jQuery(document).ready(function() {
	jQuery("#content").find(".news-container").each(function(i) {
		jQuery(this).children('.entry').hide();
		var i=0;
		jQuery(this).children('.relevant').each(function(i) {
			i++;
			if (i<=2) {
				jQuery(this).show();
			}
		});
	});
});
