//Gaia Java Document
//Developed by Towfiq I.
// www.towfiqi.com

	$(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": "#00ffe9" }, "slow");
		}, function(){
			$(this).stop().animate({"color":"#ffffff"},"slow");
		});
		
		$("a.active").hover(function(){
			$(this).stop().animate({"color":"#E0F3B0"},"slow");
		}, function(){
			$(this).stop().animate({"color":"#E0F3B0"},"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 
	});
});
	
    $(document).ready(function(){ 
        $(document).pngFix(); 
    }); 	

