$(document).ready(function()
{
    $('a.faqQuestionOpen').click(function()
    {
        $(this).hide('slow');
        $(this).next().show('slow');
    });
    $('div.faqQuestionClose').click(function()
    {
        var parent = $(this).parent();
        parent.hide('slow');
        parent.prev().show('slow');
    });
    
});

