countdownload=function(item) {
	var root = 'http://www.epersonalfinance.org/clicks/';
	i = new Image();
	i.src= root + item.href;
return true;
}

counterDownload=function()
{
	$$('.afflink').each(function(item){
		item.onclick=function(){return countdownload(this)};
	})
	$$('.imglink').each(function(item){
		item.onclick=function(){return countdownload(this)};
	})

}

document.observe("dom:loaded", function() {  counterDownload();  }); 