/*
 * Isku Interior tracking code
 * 10-06-2010 copyright Kwantic Oy
 */

var livetracks= {};

livetracks.liveTracker = function(trackedPattern, label ){
    $('a').live('click',function(i){
        if(! this.href.match(trackedPattern) ) return;
        var action = $(this).attr('href');
        try{
            pageTracker._trackEvent(label, action);
        }
        catch(e) {}
    })
}
 
 
livetracks.trackExitDomainLinks = function(){
    $('a').live('click',function(i){
        if(this.href.match(window.location.hostname) ) return;
        var action = $(this).attr('href');
        try{
			pageTracker._trackEvent('Palvelusta ulos johtavat linkit', action);
        }
        catch(e) {}
    })
}

$(function(){
 
	livetracks.trackExitDomainLinks();
	livetracks.liveTracker(/\.doc|\.pdf|\.docx|\.xls|\.xlsx|\.ppt|\.pptx|\.zip/,'Ladatut tiedostot');
 
})
