// JavaScript Document

// General scripts and functions

// for jquery functions
$(document).ready(function() {
	//hide the all of the element with class msg_body
	$(".expand").hide();

	//toggle the componenet with class msg_body
	//$(".drop").click(function() {
	//	$(this).next(".expand").slideToggle('fast');
	//});
/*
	$('ol.faq > div.expand').hide();
   
  // allows content to expand
  $('ol.faq > li.drop').click(function() {
	$(this).toggleClass('opened').next().slideToggle('fast');
  });
*/

$(".drop").click(
				  function() {
					  var inplay = "ans_"+this.id.substring(6);
					  if( $("#"+inplay).css("display")=="none") {
					    $("#"+inplay).show("fast");  
					  } else {
						  $("#"+inplay).hide("fast");  
					  }
				  }
				 );


});