$(document).ready(function(){
    $('.question>strong').hover(function(){$(this).css('color','#e88a04');}, function(){$(this).css('color','#084f94');});
    $('.answer').hide(); 
    $('.question').click(function(){
        $('.answer').not($(this).next()).hide(200); 
        $('.question>img').attr('src','/media/images/+.gif');
        if ($(this).next('.answer').css('display') == 'none')
        {
            $(this).find('img').attr('src','/media/images/-.gif');
        }
            $(this).next('.answer').slideToggle(200); 
    });
});
