$(document).ready(function(){
    $('#centro img').animate({
        'opacity':0
    },1);
    $('#tags img').animate({
        'opacity':0
    },1);
    $('.centro_texto').animate({
        'opacity':0
    },1);
    $('.tag_interna').animate({
        'opacity':0
    },0);
    
    
    $('.bloco').hover(function(){
        id = $('.bloco').index(this);
        $('#centro img').eq(id).stop().animate({
            'opacity':1
        },200);
        $('#tags img').eq(id).stop().animate({
            'opacity':1
        },200);
        $('.centro_texto').eq(id).stop().animate({
            'opacity':1
        },200);
        
    }, function(){
        $('#centro img').stop().animate({
            'opacity':0
        },200);
        $('#tags img').stop().animate({
            'opacity':0
        },200);
         $('.centro_texto').eq(id).stop().animate({
            'opacity':0
        },200);
    });
    $('#menu_corpo a').hover(function(){
        id2 = $('#menu_corpo a').index(this);
        $('.tag_interna').eq(id2).stop().animate({
            'opacity':1
        },200);
    }, function(){
       $('.tag_interna').stop().animate({
            'opacity':0
        },200);
    });
    $('.banner>img:gt(0)').hide();
    $('#banner_marcas>img:gt(0)').hide();
    
    setInterval(function(){
        $('.banner img:first-child')
        .fadeOut(1800)
        .next('img')
        .fadeIn(1800)
        .end()
        .appendTo('.banner');
    }, 3000);
    
    setInterval(function(){
        $('#banner_marcas img:first-child')
        .fadeOut(1800)
        .next('img')
        .fadeIn(1800)
        .end()
        .appendTo('#banner_marcas');
    }, 3000);
    
   $('#info_pagina').fadeOut(1).fadeIn('slow'); 
});
