$(function(){


	$('a').click(function(event){
			
		var link = $(this);
		
		if(link.attr('href') == 'contact.php') {
			var label = window.location.href;
			if(link.parents('.contact').length > 0) {
				label += ' call to action ';
			}
			if(link.parents('header').length > 0) {
				label += ' header ';
			}
			if(link.parents('footer').length > 0) {
				label += ' footer ';
			}
			
			_gaq.push(['_trackEvent', 'ContactLinks', 'click', label])
			
		}
		
		if(link.parents('.assortiment').length > 0) {	
			var label =window.location.href + ' : ' + link.attr('href');
			
			_gaq.push(['_trackEvent'], 'AssortimentLinks', 'click', label);
		}
		
		if(link.attr('id') == 'pbm-actie') {

			_gaq.push(['_trackEvent'], 'PBM link homepage', 'click');
		}
	});
	
	$('.vcard .email').click(function(event){
		_gaq.push(['_trackEvent'], 'Mailto', 'click');
	});
	
	$('#callme input.button').click(function(event){
		_gaq.push(['_trackEvent'], 'BelMijTerug', 'submit');
	});

});

