jQuery(document).ready(function(){
    $('.corner8').corner("8px");
    $("#home-features-slider").easySlider({
        auto: true,
        continuous: true
    });

    $("#home-portifolio").easySlider({
        auto: true,
        continuous: true,
        controlsShow: false,
        speed:2000,
        pause:5000
    });

    $("#clientes-depoimento-slide").easySlider({
        auto: false,
        continuous: true,
        nextId: "depo-next",
        prevId: "depo-prev",
        speed:400

    });

    $('#home-clientes a').fadeTo(500,'0.50').hover(
        function(){
            $(this).fadeTo(100,'1');
        },
        function(){
            $(this).fadeTo(500,'0.50');
        }
    );

//    $('#clientes-hall .itens a').fadeTo(1,0.30);
//    $('#clientes-hall .itens a').hover(
//        function(){
//            $(this).stop().fadeTo(200,1);
//        },
//        function(){
//            $(this).stop().fadeTo(600,0.50);
//        }
//    );

});

