$(function() {
    setTimeout(function() {
        $('#slides').cycle({ 
        	cleartype:  1, // enable cleartype corrections 
    		fx:     'fade', 
    		prev:   '#prev0, #prev1, #prev2', 	
    		next:   '#next0, #next1, #next2', 
    		timeout:       6000,  // milliseconds between slide transitions (0 to disable auto advance) 
    		continuous:    0,     // true to start next transition immediately after current one completes 
    		speed:         1000
    		
		});
    		});
});


