It sounds like you are describing the function of an accordion. Wordpress offers a bunch of accordion plugins. Here are a few:
http://wordpress.org/plugins/tags/accordion
If you are looking for something with less control, you can look directly into the jquery accordion widget. See the information here: http://jqueryui.com/accordion/
EDIT
To add an accordion plugin to your list, you need to apply the following changes. Add the following to your tag:
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
In your wp archives plugin, change the following line:
echo "<div class='list'><ul>\n";
:
echo "<div class='list'><ul id=\"unique_id_of_your_choice\">\n";
, , , ( , , ). , , , "post_content".
$arcresults2 = $wpdb->get_results("SELECT ID, post_date, post_title, post_content, comment_status FROM " . $wpdb-> posts . " WHERE post_date LIKE '$thisyear-$thismonth-%' AND $current_posts AND post_status='publish' AND post_password='' ORDER BY post_date DESC");
...
...
$arc_title = $arcresult2->post_title;
$arc_content = $arcresult2->post_content;
...
...
echo "<li class='list'><a href=\"" . $url . "\" title=\"" . $title_text . "\">" . wptexturize($text) . "</a>\n";
echo"<ul><li>".$arc_content."</li></ul></li>\n";