$(document).ready(function()
{
	$(window).load(function()
	{
		$('.cycle').each(function()
		{
			$(this).cycle(
			{ 
				fx:			'fade', 
				timeout:	0, 
				next:		$(".next", this.parentNode),
				prev:		$(".prev", this.parentNode)
			});
		});
	});
});
