$(document).ready(function()
{
	$('h3.faq').addClass('collapsed');
   $('p.faq').hide();
    
    $('h3.faq').hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover');
      }
    );
    
    
     $('h3.faq').click(function () {
      $(this).toggleClass('expanded');
      $(this).next('p.faq').toggle();
    });
     
    });