$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next(".msg_body").slideToggle(600);
  });
});

$(document).ready(function() {
	$('ul#testimonials').quote_rotator({
	rotation_speed: 6000,                    // defaults to 5000
	pause_on_hover: false,                   // defaults to true
	randomize_first_quote: true              // defaults to false
	});
});
