/////////////////// catch all links clicked and log in google analytics //////////////////

 $('a').click(function () {
	var thisel = $(this);
	try
	{
		_gaq.push(['_trackEvent', thisel.parents().andSelf().filter('[id!=""]:first').get(0).id, 'clicked', (thisel.text() || thisel.children('img:first').attr('alt'))]);
	}
	catch (err) {}
});