<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
        <style type="text/css">
            .block2 {
                display: none;
            }
        </style>
    </head>
    <body>
        <div class="block1">
            <a href="#">Ответ</a>
        </div>
        <div class="block2">...</div>
        <div class="block1">
            <a href="#">Ответ</a>
        </div>
        <div class="block2">...</div>
        <script type="text/javascript">
            $( ".block1 a" ).click( function() {
                $( this ).parent().next().toggle();
                return false;
            });
        </script>
    </body>
</html>