// JavaScript Document
//<![CDATA[
<!-- FunkyStuff gets executeed when page is ready -->
function init() 
{
$(".article .thebody").hide();
$(".actions li.readbody a").click(function(event) 
	{
		var mybody = this.parentNode.parentNode;
		while (mybody = mybody.nextSibling) 
			{
				if (mybody.className == "thebody") break;
			};
		if (!mybody) return;
        $(mybody).toggle('blind', 500);
        event.preventDefault();
     });
}

$(document).ready(init);

$(document).ready(function()
{
	$(".close").click(function () 
		{
			$('.thebody:visible').hide('blind');
		});
});
//]]>