$(document).ready(function()
	{
		$('.slideshow').cycle(
		{
			fx: 'fade',
			timeout: 6000,
			speed: 1500
		});
	
		/*
		$('.collapse').click(function()
			{
				var prefix = new String('page_');
				var parentId = $(this).attr('id').substring(prefix.length);
				var subPageContainer = '#subpages_' + parentId;
				
				$(subPageContainer).toggle();
				
				if ($(this).hasClass('collapse_closed'))
				{
					$(this).removeClass('collapse_closed');
					$(this).addClass('collapse_opened');
				}
				else
				{
					$(this).removeClass('collapse_opened');
					$(this).addClass('collapse_closed');
				}
			}
		);
		*/
	}
);

