/*---------------------------------------------------
    Title: Add Google Tracking to outgoing Links

    Description : jquery snippet checks for redircted a links and fires google track onlclick  

    Copyright 2009 Khoosystems Ltd
    Coded: Dave K
    
    History:
	22/06/09: Release	

----------------------------------------------------*/


  
$('.article a').each(function(){
  
    $(this).click(function(){

     // pageTracker._trackPageview(match);
     urchinTracker($(this).attr('href'));
     
    })
  
})




