/* SILVERBACK *//* Tooltip Functions----------------------------------------------------------------------------- */	$(document).ready(function() {		var width = $(window).width();		var height = $(window).height();			});/* TOOLTIP TOGGLE - ADJACENT TOOLTIPS----------------------------------------------------------------------------- */	function tooltips() {			$('.member, .node, #sidebar .friend').children('a').children('img').hover(function(e) {					$(this).parent('a').siblings('dl').show();				var cursorX = e.pageX;			var width = $(window).width();			var split = width / 2;				if (cursorX > split) {				$(this).parent('a').parent().addClass('flip');			}				}, function() {					$(this).parent('a').siblings('dl').hide();			$(this).parent('a').parent().removeClass('flip');			});		}
