<script type="text/javascript">
$(document).ready(function()
{
$(".resSub").hide();
$(".resHead").click(function()
{
$(this).next(".resSub").slideToggle(600);
});
});
</script>
Wouldn't be working on this page: http://beta.wtcut.com/asia
The script works fine outside of wordpress.
What it does is Hides the content of the div's with the class resSub, and shows them when you click the header above the corresponding div. So for that page, you would click on China, and the links would show.










