﻿var abc = true;

function LoadMediaBox()
{
      $('.divAbas div').each(function(i)
      {
        $(this).children('p').click(function()
        {
            abc = false;
            if($(this).hasClass('.abaInativa'))
            {
                $('div .divAbasAbsoluteInativo').each(function(i)
                {
                    $(this).removeClass('divAbasAbsoluteAtivo');
                    $(this).addClass('divAbasAbsoluteInativo');
                    $(this).children('p').removeClass('abaAtiva');
                    $(this).children('p').addClass('abaInativa');
                    $(this).children('p').children('span').removeClass('txt-itens-bold');
                    $(this).children('p').children('span').addClass('txt-itens');
                });
                $('div .divAbasAbsoluteAtivo').each(function(i)
                {
                    $(this).removeClass('divAbasAbsoluteAtivo');
                    $(this).addClass('divAbasAbsoluteInativo');
                    $(this).children('p').removeClass('abaAtiva');
                    $(this).children('p').addClass('abaInativa');
                    $(this).children('p').children('span').removeClass('txt-itens-bold');
                    $(this).children('p').children('span').addClass('txt-itens');
                });
                $(this).parent().removeClass('divAbasAbsoluteInativo');
                $(this).parent().addClass('divAbasAbsoluteAtivo');
                $(this).removeClass('abaInativa');
                $(this).addClass('abaAtiva');
                $(this).children('p span').removeClass('txt-itens');
                $(this).children('p span').addClass('txt-itens-bold');
                
                var src = '';
                $('#conteudoAba').fadeOut(500);
                $('#fundoTransparente').slideUp(500);                
                $('#textoAba').slideUp(500);
                switch($(this).attr('id'))
                {
                    case 'Aba1': setTimeout(function(){$('#imagemAba').attr('src', array['Aba1'].image); $('#conteudoAba a').attr('href', array['Aba1'].link); $('#txt-materia-box-v').children('a').attr('href', array['Aba1'].link);$('#txt-materia-box-v').children('a').text(array['Aba1'].titulo);$('#txt-materia-b').children('a').attr('href', array['Aba1'].link);$('#txt-materia-b').children('a').text(array['Aba1'].text);}, 500); break;
                    case 'Aba2': setTimeout(function(){$('#imagemAba').attr('src', array['Aba2'].image); $('#conteudoAba a').attr('href', array['Aba2'].link); $('#txt-materia-box-v').children('a').attr('href', array['Aba2'].link);$('#txt-materia-box-v').children('a').text(array['Aba2'].titulo);$('#txt-materia-b').children('a').attr('href', array['Aba2'].link);$('#txt-materia-b').children('a').text(array['Aba2'].text);}, 500); break;
                    case 'Aba3': setTimeout(function(){$('#imagemAba').attr('src', array['Aba3'].image); $('#conteudoAba a').attr('href', array['Aba3'].link); $('#txt-materia-box-v').children('a').attr('href', array['Aba3'].link);$('#txt-materia-box-v').children('a').text(array['Aba3'].titulo);$('#txt-materia-b').children('a').attr('href', array['Aba3'].link);$('#txt-materia-b').children('a').text(array['Aba3'].text);}, 500); break;
                    case 'Aba4': setTimeout(function(){$('#imagemAba').attr('src', array['Aba4'].image); $('#conteudoAba a').attr('href', array['Aba4'].link); $('#txt-materia-box-v').children('a').attr('href', array['Aba4'].link);$('#txt-materia-box-v').children('a').text(array['Aba4'].titulo);$('#txt-materia-b').children('a').attr('href', array['Aba4'].link);$('#txt-materia-b').children('a').text(array['Aba4'].text);}, 500); break;
                    case 'Aba5': setTimeout(function(){$('#imagemAba').attr('src', array['Aba5'].image); $('#conteudoAba a').attr('href', array['Aba5'].link); $('#txt-materia-box-v').children('a').attr('href', array['Aba5'].link);$('#txt-materia-box-v').children('a').text(array['Aba5'].titulo);$('#txt-materia-b').children('a').attr('href', array['Aba5'].link);$('#txt-materia-b').children('a').text(array['Aba5'].text);}, 500); break;
                }
                setTimeout(function(){$('#conteudoAba').fadeIn(500); $('#fundoTransparente').slideDown(500); $('#textoAba').slideDown(500);}, 600);
            }
        });
        switch($(this).children('p').attr('id'))
        {
            case 'Aba1': $(this).children('p').children('span').append(array['Aba1'].abatexto); break;
            case 'Aba2': $(this).children('p').children('span').append(array['Aba2'].abatexto); break;
            case 'Aba3': $(this).children('p').children('span').append(array['Aba3'].abatexto); break;
            case 'Aba4': $(this).children('p').children('span').append(array['Aba4'].abatexto); break;
            case 'Aba5': $(this).children('p').children('span').append(array['Aba5'].abatexto); break;
        }
        $('#imagemAba').attr('src', array['Aba1'].image);
        $('#conteudoAba').children('a').attr('href', array['Aba1'].link);
        $('#txt-materia-box-v').children('a').attr('href', array['Aba1'].link);
        $('#txt-materia-box-v').children('a').text(array['Aba1'].titulo);
        $('#txt-materia-b').children('a').attr('href', array['Aba1'].link);
        $('#txt-materia-b').children('a').text(array['Aba1'].text);
      });
}

function AutoMediaBox()
{
    switch($('.abaAtiva').attr('id'))
    {
        case 'Aba1': setTimeout(function(){if(abc){$('#Aba2').click(); abc=true;}},10); break;
        case 'Aba2': setTimeout(function(){if(abc){$('#Aba3').click(); abc=true;}},10); break;
        case 'Aba3': setTimeout(function(){if(abc){$('#Aba4').click(); abc=true;}},10); break;
        case 'Aba4': setTimeout(function(){if(abc){$('#Aba5').click(); abc=true;}},10); break;
        case 'Aba5': setTimeout(function(){if(abc){$('#Aba1').click(); abc=true;}},10); break;
    }
    if(abc)
    {
        setTimeout(AutoMediaBox, 8000);
    }
}
