$(document).ready(function() {

// this allows variable tooltip widths via the classname
$("[class^=tool-tip-]").each(function() {
   var fu = this.className;
   var fu1 = fu.match(/\w+-\w+-(\d+)/);
if (fu1) {
	var fu2 = 'a.tool-tip-';
	fu2 = fu2.concat(fu1[1]);
   $(fu2).cluetip({'showTitle': false, 'width': fu1[1]});
}

});

   $('a.tool-tip').cluetip({'showTitle': false, 'width': 425});
   $('a.tool-tip-icon').cluetip({'showTitle': false, 'width': 425, 'titleAttribute': 'rev'});
});

