$(document).ready(function(){
  $("h1:first").wrap("<div class='h1-background'></div>");
  sIFR.replaceElement('div.h1-background > h1', named({sFlashSrc: "/grt-ll/img/bullet.swf", sColor: "#ffffff", sCase: "lower", sWmode: "transparent"}));
  sIFR.setup();

   $('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});


});