$(document).ready(function() {
	
  /* PDF LINKS */
  
  $('a[href$=pdf]').click(function(){
	  _gaq.push(['_trackEvent', 'PDF', 'Download', 'CEFORA', 1]);
  });
  
  /* DOC LINKS */
  
  $('a[href$=doc]').click(function(){
	  _gaq.push(['_trackEvent', 'DOC', 'Download', 'CEFORA', 1]);
  });
  
  /* PLAY LINK */
  
  $('a[href$=callExternalInterface()]').click(function(){
	  _gaq.push(['_trackEvent', 'Video', 'Play-Stop', 'CEFORA', 1]);
  });
  
  /* NEWS */
  
  $('#flux_news p a').click(function(){
	  _gaq.push(['_trackEvent', 'News', 'View', 'CEFORA', 1]);
  });
  
  /* ADD TO PDF */
  
  $('a[onclick=add2pdfsingle();]').click(function(){
	  _gaq.push(['_trackEvent', 'PDF_basket', 'Add', 'CEFORA', 1]);
  });
  
  /* SOCIAL */
  
  $('#social_toolbar a').click(function(){
	  _gaq.push(['_trackEvent', 'Social', 'Share', 'CEFORA', 1]);
  });
  
  /* PARTNERS */
  
  $('#footer_line3 a').click(function(){
	  _gaq.push(['_trackEvent', 'Partners', 'Visit', 'CEFORA', 1]);
  });
  
  /* SITE SEARCH */
  
  $('.tx-indexedsearch input[name*=submit_button]').click(function(){
	  _gaq.push(['_trackEvent', 'Site-search','Search-terms', 'CEFORA', $('#search_for').val()]);
  });
  
});
