(function($){
$(document).ready( function ($) {
	$("a.download").each( function(i, item) {
		target =  $(item).attr("href");
		$(item).attr("href","/download.aspx?target='"+encodeURIComponent(target)+"'");
	} );
});
})(jQuery);