With this little function i can move sliders easy and i can insert the time for setTimeOut send the new loop , etc
But i have one problem , you can see the var time , this var indicate the time for run other time setTimeOut and if you see in the animation i have other times for run and show in each slider , the problem it´s i need the time for run setTimeOut start when the animation finish and create the interval of time betwen animations , with this times when run the first slider show the second , etc and i cant show one to one each slider
For example run the first slider and after 8 seconds show the next , etc
var time = 8000;
$(".im_" + id).slideDown().animate({
height: "300px",
width: "100%",
}, 1200).delay(4000).fadeOut(1000);
id = (id + 1) % imax;
setTimeout(function() {
slider(id);
}, time);
I hope understand all , thank´s , the best regards