I want to animate a hover over some elements after some period, but can't seem to get it right.
Here's what i tried.
CODE
$(document).ready(function(){
    function setHover() {
        $('.header_Icons_Main').each(function(i, obj) {
            $(this).mouseenter()
        });
    }
    setInterval(setHover, 1000);
});
Thanks.
 
     
    