jQuery(document).ready
(
	function()
	{
		// then cycle
		
		jQuery( 'div.slideshow-container' ).cycle
		(
			{ 
				timeout:  12000
				,
				speed: 1200
			}
		)
		;
	}
)
;