 $(document).ready(function() {
     $('#madeby-acc').Accordion({
       header: 'h4',
       speed: 1000,
       autoheight: true
     });
     $("#madeby-acc").find('h4').hover(function(){
       $(this).addClass("faq-hover");
     },function(){
       $(this).removeClass("faq-hover");
     });
 });
