// JavaScript Document

$(document).ready(function(){
	
	$(".fade3 a").hover(function(e) {
		// mouse over the containing div
			$(this).children('img:first').stop().animate({opacity: 0});
	}, function() {
		// mouse off the containing div
			$(this).children('img:first').stop().animate({opacity: 1});
	});
	
});



