$.fn.cycle.defaults.timeout = 6000;
$(function() {
    // run the code in the markup!
    $('table pre code').not('#skip,#skip2').each(function() {
        eval($(this).text());
    });
    
    $('#s6').cycle({
	timeout:0,
	delay:-2000,
	next:   '#next2', 
    prev:   '#prev2'
    });
});