jQuery(function(){
			function getGALabel (element,label) {
				return 'name='+(label||jQuery(element).attr('tt-ga:label'))+'&locale=it-IT';
			};
			jQuery('#main-navigation a').each(function(item){
				jQuery(this).GoogleAnalytics({
					category:'topnav',
					action:'click',
					label:getGALabel(this)
				});
			});
			jQuery('#home-quick-links a').each(function(item){
				jQuery(this).GoogleAnalytics({
					category:'quicklink',
					action:'click',
					label:getGALabel(this)
				});
			});
			jQuery('#home a.home-box').each(function(item){
				jQuery(this).GoogleAnalytics({
					category:'promobox',
					action:'click',
					label:getGALabel(this)
				});
			});
			jQuery('#routes-submit').each(function(item){
				jQuery(this).GoogleAnalytics({
					category:'functionalitybox',
					action:'click',
					label:getGALabel(this,'routes')
				});
			});
			jQuery('#extended-footer a').each(function(item){
				jQuery(this).GoogleAnalytics({
					category:'extendedfooter',
					action:'click',
					label:getGALabel(this)
				});
			});
		});
