$(document).ready(function() {
    
    $('#slide').cycle({
        fx:     'fade', 
        speed:   1500,
        timeout: 7000,
        random: 1
        
    });
    
   
    $("#slide").hover(function() {
        $(".descover").stop().animate({ 
            marginTop: "-100px"
           },"slow");
    }, function() {
         $(".descover").stop().animate({ 
            marginTop: "0px"
           },"slow");
    });
    

});

