//----------------------------------------------------------------------------------------

// Authors : Guillaume Quimper & Nadia Hadji, Influenza marketing http://www.influenza.ca
// Version 1.0
// Created: November 2010

//----------------------------------------------------------------------------------------

// *******************
// Track Video Opening
// *******************

$(function(){ 
		   
	// Homepage French
	$("#homeVideo a.play.fr").click(function () {
		 _gaq.push(['_trackEvent','Video','Open','Homepage FR']);
	});			
	
	// Homepage English
	$("#homeVideo a.play.en").click(function () {
		 _gaq.push(['_trackEvent','Video','Open','Homepage EN']);
	});
	
	// Left Column French
	$("#columnVideo a.play.fr").click(function () {
		 _gaq.push(['_trackEvent','Video','Open','Left Column FR']);
	});
	
	// Left Column English
	$("#columnVideo a.play.en").click(function () {
		 _gaq.push(['_trackEvent','Video','Open','Left Column EN']);
	});
	
});

// ****************************
// Track Postal Code Submission
// ****************************

$(function(){ 
	$("#buttonPostal,#buttonPostal1").click(function () {
		var postalcode = $("#code").attr('value');
		_gaq.push(['_trackEvent', 'Postal Code','Submit',postalcode]);
	});								 
});


// ***********************
// Track Buy Button Clicks
// ***********************

$(function(){ 
	$("a.buyButton").click(function () {
		var sku = $(this).attr('id');
		_gaq.push(['_trackEvent', 'Buy Product','Click',sku]);
	});
});


// ********************************
// Track Products Life Cycle Clicks
// ********************************

$(function(){ 
	$("#cycles li.on a").click(function () {
		var lifecycle = $(this).attr('text');
		_gaq.push(['_trackEvent', 'Product Life Cycle','Click',lifecycle]);
	});
});



// ***********************
// Track External Link
// ***********************

$(function(){ 
	$('a[target|="_blank"]:not(".buyButton")').click(function () {
		var url = $(this).attr('href');
		_gaq.push(['_trackEvent', 'External Links','Click',url]);											   
	});
});	   


// ***********************
// Track Newsletter Form
// ***********************

$(function(){ 
	$("#header a.newsletter.fr").click(function () {
		 _gaq.push(['_trackEvent','Newsletter','Form Open','FR']);
	});
	
	$("#header a.newsletter.en").click(function () {
		 _gaq.push(['_trackEvent','Newsletter','Form Open','EN']);
	});
});	   

