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