$(document).ready(function()
{
	$('#quotes').cycle(
	{
		//The speed option defines the number of milliseconds it will take to transition from one slide to the next.
		//The timeout option specifies how many milliseconds will elapse between the start of each transition.
		fx:			'fade',
		speed:		2000,
		timeout:	4500
	});
	
	$('#left ul ul, .case').hide();
	
	$('.fl').append($('<a>').attr('href', '#').text('Lees meer').css('display', 'block'));
	
	$('.fl a').live('click', function()
	{
		$(this).parent().hide().next().show();
		return false;
	});
});
