$(function() {
    if (ENVIRONMENT == 'production') {
      $(".track").click(function(event) {
         if(this.title.length > 0) {
             elqStatus = elqFCS(this.title); 
         } else {
             alert('Could not track element, please add the title attribute');
         }
      });
    }
});

