/*$.fn.cycle.defaults.speed   = 900;
$.fn.cycle.defaults.timeout = 6000;*/

$(function() {
    // run the code in the markup!
    $('#demos pre code').each(function() {
        eval($(this).text());
    });
});

$(document).ready(function() {
    $('.slideshow').cycle({
		fx:      'fade',
    	delay:   -3000 // choose your transition type, ex: fade, scrollUp,curtainX, shuffle, etc...
	});
});

$(document).ready(function() {
    $('.slideshow2').cycle({
		fx:      'fade',
    	delay:   -2000 // choose your transition type, ex: fade, scrollUp,curtainX, shuffle, etc...
	});
});


