
/**
 * Init image cycling on page load
 */ 
 

jQuery(document).ready(function($){
    $('#images-cycle').cycle({
         fx:       'fade' 
        ,random:   0
        ,speed:    3000 
        ,timeout:  3000 
        ,delay:    -2000
    });
});

