$(document).ready(function(){
	if ($("ul.featured").length) {
		$("ul.featured").children().each(function() {
			var linktext = $(this).find("a").text();
			var attribute = "_gaq.push(['_trackEvent', 'Featured Links', 'Click', '"+linktext+"']);";
			$(this).find("a").attr("onClick", attribute);
		});
	}
});
