	$(document).ready(
		function(){
			$("li").bind("mouseenter", 
				function(){
					$(this).children("div").fadeOut("fast");
				}
			);
			$("li").bind("mouseleave", 
				function(){
					$(this).children("div").fadeIn("slow");
				}
			);
		}
	);

