$(document).ready(function(){ $(".detail span").click(function() { $(this).prevAll(".mark:last").click(); }); $(".detail > .mark").toggle( function() { this.src = this.src.replace("closed", "open"); $(this).nextAll(".details:first").toggle(); }, function() { this.src = this.src.replace("open", "closed"); $(this).nextAll(".details:first").toggle(); }); $(".details").hide(); })