$(document).ready(function(){
	var _tooltip = $('#tooltip');
	var tooltip_text = _tooltip.find('div.bottom-bg');
	$('div.sidebar ul li').each(function(){
		if($(this).find('.tooltip-content').length){
			$(this).mouseenter(function(e){
				_tooltip.stop().css({opacity:0, display: 'block'});
				tooltip_text.html($(this).find('.tooltip-content').html());
				_tooltip.css({left:e.pageX, top:e.pageY}).animate({opacity: 1}, 150);
			}).mouseleave(function(){
				_tooltip.stop().animate({opacity: 0}, 150, function(){ $(this).hide();});
			}).mousemove(function(e){
				_tooltip.css({left:e.pageX, top:e.pageY});
			});
		}
	});
});
