var $j = jQuery.noConflict();
$j.fn.cycle.defaults.timeout = 6000;
$j(function() {
	// run the code in the markup!
	$j('table pre code').not('#skip,#skip2').each(function() {
		eval($j(this).text());
	});
	$j('#s4').cycle({
fx:    'fade', 
delay: -1000 ,
autostopCount:   5,
autostop:   5,
timeout: 6000,
next:   '#next2',
prev:   '#prev2'  
	});
});
