﻿$((document)).ready(function() {
    $('.kwicks').kwicks({
        max: 220,
        spacing: 2
    });
});




$(document).ready(function() {

    //$("#exibir1").fadeIn(function() { $(this).animate({ opacity: 0.0 }, 0); });
    //$("#exibir2").fadeIn(function() { $(this).animate({ opacity: 0.0 }, 0); });
    //$("#exibir3").fadeIn(function() { $(this).animate({ opacity: 0.0 }, 0); });
    //$("#exibir4").fadeIn(function() { $(this).animate({ opacity: 0.0 }, 0); });
    //$("#exibir5").fadeIn(function() { $(this).animate({ opacity: 0.0 }, 0); });

    $('#conteudo1').hide();
    $('#conteudo2').hide();
    $('#conteudo3').hide();
    $('#conteudo4').hide();
    $('#conteudo5').hide();

    $('#titleWorks1').hide();
    $('#titleWorks2').hide();
    $('#titleWorks3').hide();
    $('#titleWorks4').hide();
    $('#titleWorks5').hide();

    

    $('a#exibir1').click(function() {

        $('#conteudo1').show('slow');
        $('#recentes').hide();
        $('#titleWorks1').fadeIn('slow');
    });

    $('a#exibir2').click(function() {

        $('#conteudo2').show('slow');
        $('#titleWorks2').fadeIn('slow');
        $('#recentes').hide();
    });

    $('a#exibir3').click(function() {

        $('#conteudo3').show('slow');
        $('#titleWorks3').fadeIn('slow');
        $('#recentes').hide();
    });

    $('a#exibir4').click(function() {

        $('#conteudo4').show('slow');
        $('#titleWorks4').fadeIn('slow');
        $('#recentes').hide();
    });

    $('a#exibir5').click(function() {

        $('#conteudo5').show('slow');
        $('#titleWorks5').fadeIn('slow');
        $('#recentes').hide();
    });


    $('a.ocultar').click(function() {

        $('#conteudo1').hide('slow');   
        $('#conteudo2').hide('slow');
        $('#conteudo3').hide('slow');
        $('#conteudo4').hide('slow');
        $('#conteudo5').hide('slow');

        $('#titleWorks1').fadeOut('slow');
        $('#titleWorks2').fadeOut('slow');
        $('#titleWorks3').fadeOut('slow');
        $('#titleWorks4').fadeOut('slow');
        $('#titleWorks5').fadeOut('slow');
       
        $('#recentes').show('slow');
       

    })

});