//Gaia Java Document


	$(function(){
		$('.t1').hover(function(){
			$(this).stop().animate({"opacity":"0"}, "slow");
		}, function(){
			$(this).stop().animate({"opacity":"1"}, "slow");
		});
		
		$('.fb1').hover(function(){
			$(this).stop().animate({"opacity":"0"}, "slow");
		}, function(){
			$(this).stop().animate({"opacity":"1"}, "slow");
		});
		
		$('.rss1').hover(function(){
			$(this).stop().animate({"opacity":"0"}, "slow");
		}, function(){
			$(this).stop().animate({"opacity":"1"}, "slow");
		});
		
		$("#menu ul li a").hover(function(){
			$(this).stop().animate({"color":"#2ea3a7"},"slow");
		}, function(){
			$(this).stop().animate({"color":"#CCCCCC"},"slow");
		});
		
		$("a.active").hover(function(){
			$(this).stop().animate({"color":"#2ea3a7"},"slow");
		}, function(){
			$(this).stop().animate({"color":"#2ea3a7"},"slow");
		});
		
		
		$('li.submenu').hoverIntent(function(){
			$(this).find('ul').slideDown('medium');
		}, function(){
			$(this).find('ul').slideUp('medium');
			});
		
	});
	
$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true,
		continuous: true 
	});
});

