$(function(){
	$(".avatar_link").mouseover(
		function(){
			var tip = $(this).find('.tooltip');
			var margin = '-'+Math.round($(this).children('.tooltip').outerWidth() / 2)+'px';
			$(this).children('.tooltip').css({"margin-left":margin,}).show();
		}
	);
	$(".avatar_link").mouseout(function(){
		$(this).find('.tooltip').hide();
	});
	
	$("#back_to_top").click(function(e){
		e.preventDefault();
		$.scrollTo(0, 800);
	});
	
});

