$().ready(function() {
    $('#slides').children().css({'display' : 'block'});
	$('#slides').cycle({ 
   //		fx:    'scrollRight', 
    	pause:  1,
    	timeout:       4000,  // milliseconds between slide transitions (0 to disable auto advance) 
    	continuous:    0,     // true to start next transition immediately after current one completes 
    	speed:       2000  // speed of the transition (any valid fx speed value) 
	}); 
});

