$(document).ready(function(){

	
  $("ul li:first-child").addClass("firstchild");
  $("ul li:last-child").addClass("lastchild");

	 //toggle the componenet with class msg_body
	  $("h3.toggle").click(function()
	  {
		$(this).next("div.wpcf7").slideToggle(500);
		$(this).toggleClass('arrowDown');
	  });
	  

	
});





