
Have a look at this. Will do the trick for you.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Tyde's test lab</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript">
$(function() {
$('a#faq').click(function() {
$('div#hidden').toggle();
return false;
});
});
</script>
</head>
<body>
<a href="#" id="faq">F A Q</a><br />
<br />
<div id="hidden">
Some Questions
Some Answers
</div>
</body>
</html>
