/*
  track_link_event/dev.js
  
  sample usage ...
  
    the old way:
    <a href='any_page.php'
       onClick="pageTracker._trackEvent('Ad', 'Click', 'Home Page, Specials, Karastan Month 2010-10, Click');" 
       >Click Here</a>
    
    this new way:
    <a href='any_page.php' 
       onClick="trackLinkEvent(this, 'Ad', 'Click', 'Home Page, Specials, Karastan Month 2010-10, Click');return false;"
       >Click Here</a>
*/

function trackLinkEvent(link, category, action, label) {
  try {
    // make sure you have the correct account number!
    var pageTracker = _gat._getTracker("UA-5448137-1");
    pageTracker._trackEvent(category, action, label);
    setTimeout('document.location = "' + link.href + '"', 100)
  }catch(err){}
}

