$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".faq_content").hide();
  //toggle the componenet with class msg_body
  $(".faq_container h2").click(function()
  {
    $(this).next(".faq_content").slideToggle(300);
  });

   $(function() {
        $(".faq_container h2").hover(function() {
            $(this).css('background', '#e7e7e7');		
            $(this).css('color', '#3C5171');	
			$(this).css('cursor', 'pointer');	
        },
        function() {
            //$(this).css('text-decoration', 'none');
            $(this).css('background', 'url(images/grey_bar.gif) bottom');			
            $(this).css('color', '#600');				
        });
    });
});


