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


	$j(document).ready(function() {

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


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


	$j(window).load(function() {


/* TOOLTIP TOGGLE - ADJACENT TOOLTIPS
----------------------------------------------------------------------------- */


	$j('.member, .node').children('a').children('img').hover(function(e) {
	
		$j(this).parent('a').siblings('dl').show();

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

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

	});


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

	
	});