$('#two,#three').hide(); $('.slide').click(function(){ var $this = $(this); $this.fadeOut(function(){ $this.next().fadeIn(); }); });
$(this).fadeOut().next().delay(500).fadeIn();