// JavaScript Document
$.fn.cycle.defaults.speed   = 1200;
$.fn.cycle.defaults.timeout = 10000;

$(function() {
	// run the code in the markup!
	$('#banner pre code').each(function() {
		eval($(this).text());
	});
});
