$("a").each(function(){
   
var link = $(this).attr('href').replace('&amp;','&')

$(this).attr('href',link);
})
