$(document).ready(function()
{
$("dd div.moretext").hide();
$("dd div.intro").append(" <a href='Javascript:;' class='more'>... Continue</a>");
/*$("dd div.moretext").append(" <a href='Javascript:;' class='close'>close</a>");*/

$("dd div.intro a.more").click(function()
{
$(this).hide();
$(this).parent().next().slideDown("slow");
$(this).parent().next().children("a.close").show();
});
/*
$("dd div.moretext a.close").click(function()
{
$(this).hide();
$(this).parent().hide();
$(this).parent().prev().children("a.more").show();
});
*/
});

