$(document).ready(function(){
	$("a.popup")
		.each(function(i){
			$( this ).tooltip('create',{
				text: $( 'span#' + $(this).attr('rel') ).html()
			});
		})
		.click(function(){return false;});
});