jQuery(document).ready(function(){
    /*
    var currentTop;
    jQuery('.corso a').hoverIntent(function(){
        currentTop = jQuery(this).parent().css('top');
        jQuery(this).parent().animate({
            'top': '1px'
        }, 200);
        jQuery(this).find('.img').animate({
            'backgroundPosition': '0 1px'
        }, 200);
        jQuery(this).parent().children('.title').show(200);
    }, function(){
        jQuery(this).parent().animate({
            'top': currentTop
        }, 200);
        jQuery(this).find('.img').animate({
            'backgroundPosition': '0 -' + currentTop
        }, 200);
        jQuery(this).parent().children('.title').hide(200);
    });
    */
   
    jQuery('.featureds').cycle({
        'fx': 'scrollUp',
        'timeout': 6000,
        'delay': -1000
    });
    jQuery('.featureds').mouseover(function(){
        jQuery(this).cycle('pause');
    });
    jQuery('.featureds').mouseout(function(){
        jQuery(this).cycle('resume');
    });
});

