// JavaScript Document
jQuery(document).ready(function(){
	if(jQuery('.textwidget').length > 0)
	{
		jQuery('.textwidget').css('height','20px');
		jQuery('.textwidget p:first').nextAll('p').hide();
		setTimeout('gotoNextTextWidget()', 7000);
	}
});
function gotoNextTextWidget()
{
	var current = jQuery('.textwidget p:visible');
	current.animate({opacity:'hide'},'fast',
					function()
					{
						var next = current.next('p');
						if(next.length == 0)
						{
							next = jQuery('.textwidget p:first');
						}
						next.animate({opacity:'show'},'fast',
										function()
										{
											setTimeout('gotoNextTextWidget()', 7000);
										}
									);
					}
				);
}