Имхо, проще уж на тег
<html>
<head>
<style>
.spoiler-content {
display:none;
}
.spoiler b{
display:none;
cursor:pointer;
padding:13px;
color:blue;
}
.spoiler.close b:first-child{
display:block;
}
.spoiler.open b:last-child {
display:block;
}
</style>
<script>
function myFunk(sel) {
$(sel).toggleClass("close").toggleClass("open").next().toggle()
}
</script>
</head>
<body>
<div class="spoiler close" onclick="myFunk(this)"><b>Открыть</b><b>Cкрыть</b></div>
<div class="spoiler-content">
Привет!<br/>
Привет!<br/>
Привет!<br/>
</div>
...
<script src="http://code.jquery.com/jquery-latest.js"></script>
</body>
</html>