var queryObj = null;
 
$(document).ready(function(){
  
  $("#homepageMap .mapSpot").mouseenter(function(){
    $('.locationInfo').hide();
    $(this).next().show();
  });

  $('#homepageMap').mouseleave(function(){
    $('.locationInfo').hide();
  });
  
  $('.tabContent').accordion({autoHeight: false});
  $('.tabContentFrame').tabs();
});


