The following code should trigger the mouse enter() and mouseleave() every each element in the found set with a 2000 ms gap between each one. The timeout is having no effect and it is going straight to the end.
$(window).load(function(){
var delayslide = 0;
$(".featuredslider a").each(function(){
var current = $(this).index();
window.setTimeout(function(){
$(".featuredslider a").mouseleave();
$('.featuredslider a:eq(' + current + ')').mouseenter();
delayslide += 2000;
}, delayslide);
});
});