$.fn.cycle.defaults.timeout = 6000;
$(document).ready(function (){
if($(window).height()<=200){
$("#wrap").css({'margin-bottom':"-20px!important;"})
	}
$('#cuadro1,#cuadro2, #cuadro3').cycle({ 
    fx:     'fade', 
    speed:   1800, 
    timeout: 6000, 
    next:   '#s4', 
    pause:   1 
	});
	$('#s3').cycle({ 
    fx:     'fade', 
    speed:   1800, 
    timeout: 10000, 
    next:   '#s3', 
    pause:   1 
	});
	$('#s2').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '#next2', 
    prev:   '#prev2' 
});
});