$.fn.cycle.defaults.timeout = 6000;
$(function() {
	// run the code in the markup!
	$('table pre code').not('#skip,#skip2').each(function() {
		eval($(this).text());
	});
	
	$('#slider').after('<div id="slidernav" class="slidernav"></div>').cycle({
		fx:     'scrollLeft',
		speed:  600,
		timeout: 4500,
		pager:  '#slidernav',
		auto: true
	});

	$('#sliderblok').cycle({
		fx:     'fade',
		speed:  900,
		timeout: 2250,
		pager:  '#slidernav1',
		auto: true
	});
});
