/**
	Put this file include as the last <script> block before the </body> tag.
*/

function trackClick(ceNum, gaCat, gaTitle, gaEvent)
{
	// Click Equations
	try	{
		CQtracker.set_CLEQ_transtype(ceNum);
		CQtracker.set_CLEQ_transid(new Date().getTime() + '-' + Math.floor(Math.random()*9876543));
		CQtracker.set_CLEQ_total('0');
		CQtracker.log_CLEQ_conversion();
	} catch (e)	{
		// Do nothing
	}
	
	// Google Analytics
	try {
		pageTracker._trackEvent(gaCat, gaEvent, gaTitle);
	} catch (e) {
		// Do nothing
	}
	
	return true;
}