(function ($) { 
	var h = function () { 
		var t = 5000, 
			p1 = $('#slideshow-01>.part-1'), 
			p2 = $('#slideshow-01>.part-2'); 
		p1.cycle({
			timeout: t, 
			delay: -t/2
		}); 
		p2.cycle({
			timeout: t
		}); 
	}; 
	$(document).bind('ready', h); 
})(jQuery);