/**
* N.B. This script REQUIRES that landing-page-link-tracker.js is loaded
* if that script is not loaded - it won't work since
*  - LinkTrackClean
* is in the other script.
**/
$(function() {
  $('#promos div.promo a').click(function() {
    var sTrackTitle = $(this).parent().parent().find('h2').text();
    sTrackTitle = LinkTrackClean(sTrackTitle);
    sTrackTitle = sLandingPage + '.secondary_promo.' + sTrackTitle + '.link';
    //return false;
    var oA = $(this).find('a');
    //  console.log(sHref);
    //  return false;    
    if (oA) {
      if(typeof ns_onclick == 'function') {
        ns_onclick(this,'',sTrackTitle,'clickin');
      }
    }
    return false;
  });
  $('#promos div').addClass('href');
});
