Is there a way to incorporate a subtle fade in/fade out effect when hovering over items on this webpage: http://jsfiddle.net/7vKFN/
I'm curious about the best approach to achieve this using jQuery.
var $container = $("#color-container"),
$description = $(".color-description", $container).hide(),
$prev;
$(".color-units li", $container).mouseenter(function() {
if ($prev)
$description.eq( $prev.removeClass("active").index() ).hide();
$description.eq( ($prev = $(this).addClass("active")).index() ).show();
}).eq(0).mouseenter();