// JavaScript Document

$.fn.cycle.defaults.timeout = 6000;
$(function() {

    $('#pai')
	.before('<div id="nav">') 
	.cycle({
     fx: 'scrollLeft', 
     easing: 'bounceout', 
     delay:  -2000 ,
    // next:'.next', 
	// prev:'.previous', 
	 pager:'#nav' 
    });
 
});
