$(document).ready(function() {

$(function(){
// Map tooltip
  $('.map a.location-map').tooltip({ 
    bodyHandler: function() { 
      return $(this).children('span').html(); 
    }, 
    fade: 250,
    positionLeft: false,
    track: true,
    showURL: false 
  });
});

})

//Accordion script


//$(document).ready(function() {
  
  
//    jQuery('div.demo-show h2').add('div.demo-show2 h2').hover(function() {
//    jQuery(this).addClass('hover');
//  }, function() {
//    jQuery(this).removeClass('hover');
//  });

//  jQuery('div.demo-show:eq(0) > div:gt(0)').hide();  
//  jQuery('div.demo-show:eq(0) > h2').click(function() {
//    jQuery(this).next('div:hidden').slideDown('fast')
//    .siblings('div:visible').slideUp('fast');
//  });
  
  
//})
  
 
