$(document).ready(function(){
    $("a.tooltip").bind("mouseenter",function(){
		$(this).next("div").fadeToggle(500);
	})
});

jQuery.fn.fadeToggle = function(speed, easing, callback) {
	return this.animate({opacity: 'toggle'}, speed, easing, callback);  
};
