// JavaScript Document


$(document).ready(function(){
						   


 
//add fade to all back to top buttons			   
						   
	//	$("#who_btt, #how_btt, #join_btt, #host_btt, #guides_btt, #contact_btt").hover(
	///	function() {
	//	$(this).stop().animate({"opacity": ".5"}, "slow");
	//	},
	//	function() {
	//	$(this).stop().animate({"opacity": "1"}, "slow");
		
	// 		});

						   

//add tooltip to next event link
						   
						   
	$("#next_event a[title]").tooltip({effect: 'fade'});
	
			
//add main menu hover to links

	  
     $("#nav a").addClass("jqhover");


//main menu hover action

		$(".jqhover").mouseover(function() {
    	$(this).stop().animate({ color: "#1E4E64" }, 500);
	  
	  	});
	  
	    $(".jqhover").mouseout(function() {
    	$(this).stop().animate({ color: "#FFF" }, 300);
		
		
		
		
		
		
		 	});
		
		
		
});	
