
$(function() {

    $('#ilabel').cycle({       

		fx:     'blindX',

	   speed:   400,

       delay:    0,

	   timeout:   5000,

	   clip: 'l2r'



    });

    $('#i1').cycle({

       fx:        'cover',

	   speed:   400,

       delay:    0,

	   timeout:  5000,

	   direction: 'left'

    });

    $('#i2').cycle({

       fx:        'cover',

	   speed:   400,

       delay:    0,

	   timeout:   5000,

	   direction: 'down'

    });

    $('#i3').cycle({

       fx:        'uncover',

	   speed:   400,

       delay:    0,

	   timeout:   5000,

	   direction: 'right'

    });

    $('#i4').cycle({

       fx:        'uncover',

	   speed:   400,

       delay:    0,

	   timeout:   5000,

	   direction: 'left'

    });

    $('#i5').cycle({

       fx:        'uncover',

	   speed:   400,

       delay:    0,

	   timeout:   5000,

	   direction: 'up'

    });

});