﻿$(document).ready(function() {
    $(".resposta").hide();
    $(".pergunta").mouseover(function() {
        $(this).css("text-decoration","underline");
        $(this).css("cursor","pointer");
    });
    $(".pergunta").mouseout(function() {
        $(this).css("text-decoration","");
    });
    $("#ver-respostas").mouseover(function() {
        $(this).css("text-decoration","underline");
        $(this).css("cursor","pointer");
    });
    $("#ver-respostas").mouseout(function() {
        $(this).css("text-decoration","");
    });
    $("#ocultar-respostas").mouseover(function() {
        $(this).css("text-decoration","underline");
        $(this).css("cursor","pointer");
    });
    $("#ocultar-respostas").mouseout(function() {
        $(this).css("text-decoration","");
    });
    $(".pergunta").click(function() {
        $(this).next(".resposta").slideToggle(100);
    });
    $("#ver-respostas").click(function() {
        $(".resposta").slideDown(100);
    });
    $("#ocultar-respostas").click(function() {
        $(".resposta").slideUp(100);
    });
});
