faq = {
  init : function() {
    $('div.faq-group p').hide();
    $('div.faq-group h2')
      .css( { 'background' : 'url(images/faq-plus.gif) no-repeat 0 5px', 'cursor' : 'pointer', 'padding-left' : '15px' } )
      .click( function() { faq.toggle( this ) });
  },

  toggle : function( elm ) {
    $( elm ).toggleClass('active');
    $( elm ).siblings('p').slideToggle('fast');
  }
}

jQuery( function() {
  faq.init();
});
