function makeExcerptLinks (parent_element, mouseover_styleClass) {
	
	var $kids = $(parent_element).children();
	
	jQuery.each($kids, function() {
		
		var theUrl = $(this).find("a:first").attr("href");
		
		$(this).bind("mouseover", function(e) { $(this).addClass(mouseover_styleClass) });
		$(this).bind("mouseout", function(e) { $(this).removeClass(mouseover_styleClass) });
		$(this).bind("click", function(e) { window.location.href = theUrl });
		
	});
	
}