$(document).ready(function() {
	$("ul.flow li a:not(.selected)").hover(
		function() {
			var div = $(this).find("span");
			div.css("opacity", 0); //IE needs this...
			div.animate({opacity: 0.2},{queue: false, duration: 300});
		},
		function() { $(this).find("span").animate({opacity: 0.0},{queue: false, duration: 300}); }
	);
});
