/* Compiled JavaScript for Atlas Van Lines */  function pageOnLoad() {      $Testimonialsdialog = $('<div></div>')  .addClass("testimonialpop")  .dialog({  resizable: false,  draggable: false,  closeOnEscape: true,  modal: true,  autoOpen: false,  title: 'Testimonial',  width: 350,  height: 400,  zIndex: 9000,  close: function(event, ui){  $(this).html("");  } });  $(".blurbtext .blurb .morelink").attr("href", "javascript:jsnull('showMore');").click(function () {   var thisBlurb = $(this).closest(".blurb");   var thisFullText = thisBlurb.next(".fulltext");   loadTestimonialWindow($Testimonialsdialog, thisFullText.html());  return false;  }); } function loadTestimonialWindow(jqObj, thisHTML){ jqObj.html(thisHTML); jqObj.dialog('open');  $(".ui-widget-overlay").bind("click", closeDialogsByOverlay);  } 
