// JavaScript Document
$(function() {
    $('td pre code').each(function() {
        eval($(this).text());
    });
	
	$('#s1').cycle({ 
    fx:     'shuffle', 
    prev:   '#prev1', 
    next:   '#next1', 
	timeout: 10000
   
});
		
});