Попробуйте эту скрипку http://jsfiddle.net/mdamC/149/
$("ul#links li a").unbind().bind('click', function(e) {
e.preventDefault();
e.stopPropagation();
$(this).toggleClass('active');
$(".descriptions").fadeOut();
//you must get the index of the parent <li> otherwise the index of the <a> is always 0!
var index = $(this).parent().index();
$(".descriptions").eq(index).fadeIn();
$('.active').removeClass('active');
$(this).addClass('active');
}, function(e) {
$(".descriptions").stop().fadeOut();
});