jQuery.noConflict();
jQuery(document).ready(function(){
	
	jQuery('dt a.ttip').mouseover(function(){
		jQuery(this).attr('title', '');
		jQuery(this).parent('dt').next('dd').fadeIn('slow');
	});
	jQuery('dt').mousemove(function(e){
		jQuery(this).next('dd').css('top', (e.pageY -10) + "px", 'left', (e.pageX + 20) +"px");
	});
	jQuery('dt').mouseout(function()
	{
		jQuery(this).next('dd').fadeOut('fast');
	});
});