$(function() { var open = $(".open"), content = $( ".content" ); open.click(function() { var i = open.index(this); content.eq(i).fadeIn() }) });