/**
 * @author Tomas
 */
		$.fn.cycle.defaults.speed   = 2000;
		$.fn.cycle.defaults.timeout = 5000;
		
		$(function() {
		    // run the code in the markup!
		    $('#pictures pre code').each(function() {
		        eval($(this).text());
		    });
		});
