//This initialises the accordion jQuery(document).ready(function() { //hide the all of the element with class msg_body jQuery(".msg_body").hide(); //toggle the componenet with class msg_body jQuery(".msg_head").click(function() { jQuery(this).next(".msg_body").slideToggle(600); }); });