/* define tooltips */
$(function() {

$('.logos a').Tooltip({
	delay: 0,
	track: true,
	showURL: false/*,
	showBody: "- "*/
});

});

/* Functionality; MJR; 20070520 */
/* Additional changes were made to tooltip.js!! */
$(document).ready(page_init);

function page_init(){
//	$('div.logos').hide();
//	$('div#CivilRights').show();
//	$('#navCivilRights a').addClass('sticky');
	
	$().mousemove(function(e){

		if ((e.pageY < 260 || e.pageY > 665) || (e.pageX < 50 || e.pageX > 660))
   			$('div.logos a').removeClass('faded');
	});
	
	/*
	$('#causesNav li a').click(function(event){
		event.preventDefault();
		$(this).blur();
		$('#causesNav li a').removeClass('sticky');
		$(this).addClass('sticky');
		
		$( 'div#' + $(this).attr('rel') ).show();
		$('div.logos:not(#' + $(this).attr('rel') + ')').hide();
	})
	*/
}
