$(document).ready(function() { $(".smallimg").hover(function() { $("#bigimg1").attr("src", this.src); }); $(".smallimg").click(function() { $("#bigimg1").attr("src", this.src); }); $(".list-group-item").click(function() { $(this).next(".subitem").slideToggle("fast"); }); $(".proshowminbtn").click(function() { $(this).next().next().slideToggle(); }); });