﻿$(document).ready(function() 
{
//    //the accoridion
//    $('ul').accordion();
    //when loading ..hide the answers 
     $('.faqanswer').hide();
      //toggle the answers
       $('a.faq').click(function() 
           {
               $(this).next(".faqanswer").slideToggle(600);
           }
       );
           $('.slideshow').cycle({
               fx: 'turnDown' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
           });
})