/* Compiled JavaScript for Atlas Van Lines */  setStatePops();  function setStatePops() { var $dialog = $('<div></div>')  .addClass("statepop")  .dialog({  resizable: false,  draggable: true,  closeOnEscape: true,  modal: false,  autoOpen: false,  title: 'State History',  width: 300,  height: 360,  zIndex: 9000,  close: function(event, ui){  $(this).html("");  } });  $('area').each(function(){   var fileName = $(this).attr("class");   var popUrl = "pop/" + fileName + ".html";   var thisTitle = $(this).attr("title");   var hyphenIndex = thisTitle.indexOf("-");   var stateName = thisTitle.substr(0,hyphenIndex -1);   $(this).attr("href","javascript:jsnull()");   $(this).click(function() {   loadStateWindow($dialog, popUrl, stateName + " History");   return false;  });  });  }  function loadStateWindow(jqObj, thisLink, thisTitle){ jqObj.html('Loading State Information...'); jqObj.dialog("option", "title", thisTitle); jqObj.dialog('open'); $(".statepop").load(thisLink + " .ajaxcontent");  } 
