$(document).ready(
	function()
	{
		setTimeout("displayBox()", 2000 );
		setTimeout("$('#newsBox2').css({visibility: \"visible\"}).hide().DropInUp(2000);", 2000 );
		$(document).ready(function(){
			$('dd.more').hide();
			$('a.openNext').click(function(){
				$(this.parentNode).next('dd.more').slideToggle('slow');
			});
		});
		$('a.minimize').bind('click', toggleContent);
		$('a.close').bind('click',function()
				{
					$(this.parentNode.parentNode.parentNode).hide();
				}
			);
		$('div.draggableBox').Draggable(
			{
				handle:		'div.xtraHeader',
				ghosting:	true,
				opacity:	0.5,
				fx:			400,
				zIndex:		1
			}
		);
	}
);
var toggleContent = function(e)
{
	var targetContent = $('div.normalText', this.parentNode.parentNode.parentNode);
	if (targetContent.css('display') == 'none') {
		targetContent.slideDown(300);
	} else {
		targetContent.slideUp(300);
	}
	return false;
};
