$(function() {

	$('.fadeOut').animate({
		"opacity" : 1
	});
	
	$('.fadeOut').hover(function() {
		$(this).stop().animate ({"opacity" : .5  });
	}, function() {
		$(this).stop().animate ({"opacity" : 1  });
	});

	$('.fadeIn').animate({
		"opacity" : .5
	});
	
	$('.fadeIn').hover(function() {
		$(this).stop().animate ({"opacity" : 1  });
	}, function() {
		$(this).stop().animate ({"opacity" : .5  });
	});

	$('.fade').fadeTo(0, 0.9);
	
	$('.fade').hover(function() {
		$(this).stop().fadeTo("fast", 1);
	}, function() {
		$(this).stop().fadeTo("fast", 0.9);
	});


});
