/* SILVERBACK */
/* Tooltip Functions
----------------------------------------------------------------------------- */


	$(document).ready(function() {

		var width = $(window).width();
		var height = $(window).height();
		
	});


/* LOAD FUNCTION INITIALIZATION
----------------------------------------------------------------------------- */


	$(window).load(function() {


/* TOOLTIP TOGGLE - WRAPPING TOOLTIPS
----------------------------------------------------------------------------- */


	$('.member a.alias, .friend a.alias, .node a.alias').hover(function(e) {
	
		$(this).parent().children('dl').fadeIn();

		var cursorX = e.pageX;
		var width = $(window).width();
		var split = width / 2;

		if (cursorX > split) {
			$(this).parent().addClass('flip');
		}
	
	}, function() {
	
		$(this).parent().children('dl').hide();
		$(this).parent().removeClass('flip');

	});


/* END LOAD FUNCTION
----------------------------------------------------------------------------- */

	
	});