$(document).ready(function()
{
    //hide the all of the element with class msg_body
    $(".faqAnswer").hide();
    //toggle the componenet with class msg_body
    $(".faqQuestion").click(function()
    {
        $(this).next(".faqAnswer").slideToggle(300);
    });

    $('#phVisualPackage').cycle({
        fx: 'fade',
        speed: 600,
        timeout: 5000
    });
});
