// tooltips from http://tooltipjs.com/;
// sample html:
//   <span class="tooltip" data-ttClass="tt-notice" title="I am a tool tip.">
//     hover over me</span>
$(document).ready(function(){
  $('.tooltip').hover(function () {
  	var currentTitle = $(this).attr('title');
  	var ttClass = $(this).attr('data-ttClass');
  	$(this).attr('title', '');
  	$(this).append('<p class="' + ttClass + '">' + currentTitle + '</p>')
  },function () {
  	var currentTitle = $('p', this).html();
  	$(this).attr('title', currentTitle);
  	$('p', this).remove();
  });		
});
