this.tooltipA = function(){
	$("#other > a").hover(function(e){											  
		$(this.lastChild).fadeIn("slow");
    },
	function(){
		$(this.lastChild).fadeOut("fast");
    });			
};

this.tooltipB = function(){	
	$("#bookmark > a").hover(function(e){											  
		$(this.lastChild).fadeIn("slow");
    },
	function(){
		$(this.lastChild).fadeOut("fast");
    });			
};
