YCodaSlider 3.0 - Lazyload + Autoplay

jQuery(window).ycodacss('ycodaslider-3.0.css');
jQuery(document).ready(function() {
	jQuery("#panel-gallery")
    .ycodagallery()
    .ycodalazy();
});
jQuery(window).bind("load", function() {
    jQuery("#panel-gallery")
    .ycodaslider({
    	navigator: false,
    	arrows : false
    });
    
    setInterval(function(){
    	jQuery("#panel-gallery").ycodaslider("right");
    }, 2000);
});