function applyCodes($tracking)
{
	jQuery(document).ready(function(){
		jQuery.each(tracking, function($i, $e){
			jQuery('#aura_op a[rel='+$e.rel+']').each(function($i2, $e2){
				var link = jQuery($e2);
				link.attr('code', $e.code);
				link.click(function(){
					eval(jQuery(this).attr('code'));
				});
			});
		});
	});
}