ciao.
Vorrei mettere mano ad un plugin jquery cycle plugin.
http://jquery.malsup.com/cycle/
vorrei scatenare all interno del plugin una funzione al'l on hover e all' on out.
il codice di esempio è questo:
codice:
$('.list-1>li a')
    .find('strong').css('top','200px').end()
    .hover(
        function(){
            if (!MSIE){
                $(this).children('.sitem_over').css("background", "").css("background", "url('"+url+"') center no-repeat").css({display:'block',opacity:'0'}).stop().animate({'opacity':1}).end() 
                .find('strong').css({'opacity':0}).stop().animate({'opacity':1,'top':'0'},350,'easeInOutExpo');
            } else { 
                $(this).children('.sitem_over').stop().show().end()
                .find('strong').stop().show().css({'top':'0'});
            }
        },
        function(){
            if (!MSIE){
                $(this).children('.sitem_over').stop().animate({'opacity':0},1000,'easeOutQuad',function(){$(this).children('.sitem_over').css({display:'none'})}).end()  
                .find('strong').stop().animate({'opacity':0,'top':'200px'},1000,'easeOutQuad');  
            } else {
                $(this).children('.sitem_over').stop().hide().end()
                .find('strong').stop().hide();
            }            
        }
    );
usa jquery, ma all' interno del codice principale , non nel plugin.
Vorrei gestire in modo personalizzato questo on over, per questo lo vorrei fare all interno del plugin dove ho le altre variabili tipiche del plugin e su cui mi baso per la resa di on hover.
grazie.