$(document).ready(function(){

	//$(".glossary").each(function(i){ $(this).simpletip({ content: "fred" }); }); 
	$(".glossary").each(function(i){
		$(this).attr("rel", "/fs/ajax/getGlossaryTerm.cfm?term=" + this.id);	
		$(this).attr("title", $(this).html());	
	});
	
	try {
		$(".glossary").cluetip();
	} catch(e) {}
	
});