(function($) {
    $(function() {
        var animate = function() {
          $('.anglilogo').css('left', 0);
          
          $('.anglilogo, .equiplogo img, .equiplogo p').css('opacity', 0);
          $('.anglilogo').animate({
            left: ($('.advert').width() - 185) / 2, opacity: 1

          }, 2000, function() {
            $(this).animate({
              opacity: 0
            }, 1000, function() {
              $('.equiplogo img').animate({ opacity: 1 }, 1000, function() {
                $('.equiplogo p').animate({ opacity: 1 }, 1000, function() {
                  setTimeout(animate, 3000);
                });
              });            
            });
          });
        }
        
        animate();
    
        $('.portals li img').hover(function() {
          $(this).attr('src', $(this).attr('data-other-src'));
        }, function() {
          $(this).attr('src', $(this).attr('data-normal-src'));      
        }).mouseout();
    });
})(jQuery);
