$(document).ready(function(){
   $('a[rel="glossary"]').cluetip({
    attribute: 'href',
	showTitle: false,
	width: 350,
	local: false,
	ajaxCache: true,
    ajaxProcess: function(data) {
	  anchor = $(this).attr('href').match(/[#][\w|\W]+/);	  
      data = $(data).not('style, meta, link, script, title, img').find(String(anchor));
	  headerText = data.parent().find('h3').text();
	  data = data.prepend('<strong>'+headerText+'</strong>');
	  data = data.html();
      return data;
    }
  });
  $('div.newsListContainer h3 a').cluetip({local:true, width:400});
});