var fluxmas=['bars3d','turn','warp','cube','bars','tiles3d','explode']; var tekflux=0; var tekpict=1; var obj_flux = { pagination: false, controls: false, // Кнопки управления, можно (true) transitions: ['warp'], autoplay: false //true // Автозапуск, можно (false) }; $(function(){ //if(!flux.browser.supportsTransitions) alert("Flux Slider requires a browser that supports CSS3 transitions"); window.f = new flux.slider('#mybanslider', obj_flux ); $('#page-promo1').click(function(){ MyNextFlux(); }); }); function MyNextFlux() { tekpict++; if(tekpict > 5 ) tekpict=1; tekflux++; if(tekflux >= 7 ) tekflux=0; window.f.showImage(tekpict, fluxmas[tekflux] ); } var timfluxId=setInterval("MyNextFlux()", 5000);