$(window).load(function(){
   swapAndHideElement('#testimonial','#display_testimonial');
   swapAndHideElement('#actionlink','#actionline');
});

function swapAndHideElement(newEl,oldEl) {
   if($(newEl).length > 0) {
      $(oldEl).html($(newEl).html());
      $(newEl).hide();
   }
}