$(document).ready(
		function() {
			$("a").each(
					function() {
						var childImg = $(this).children("img");
						if (childImg.length > 0) {
							$(this).click(
									function() {
										_gaq.push( [
												'_trackEvent',
												'TopPage',
												'Click',
												location.pathname
														+ childImg.eq(0).attr(
																"alt") ]);
									});
						} else {
							$(this).click(
									function() {
										_gaq.push( [
												'_trackEvent',
												'TopPage',
												'Click',
												location.pathname
														+ $(this).text() ]);
									});
						}
					});
		});

