$(document).ready(function(){

  $('.affiliate').each(function(){
      
      if(!$(this).attr("href").match('/Listing/'+$(this).attr('id')+'/'))
	$(this).attr("href", "/affiliate/redirect.php?innId="+$(this).attr('id'));
	$(this).attr("target","_blank");
  });

});

