Όνομα Χρήστη:
Κωδικός:
Εγγραφή Πελάτη
Αρχική / Κατηγορίες
$('.slide').cycle(
                {
                            fx:     'fade',
                            speed:   400,
                            timeout: 30000,
                            next:   '.slide',
                            pause:   0
                }
        ),
        $('.slide').hover(
                function() {
                        $(this).cycle({
                            fx:     'fade',
                            speed:   400,
                            timeout: 300,
                            next:   '.slide',
                            pause:   0
                        });
                },
                function(){
                        $(this).cycle('stop');
                }
        );