$(document).ready(function(){
    
    $('#slideshow ul li span img').click(function(){
        rotateImageIndex($(this));
    });
       
    setInterval(function()
    {
        rotateImageIndexFadeOut();
    }, 10000);
    
    if($('#lst_areas').val() != 1)
    {
        $('.curriculo').hide();
    }
   
   $('#lst_areas').change(function(){
        if($(this).val() != 1)
        {
            $('.curriculo').slideUp();
        }
        else
        {
            $('.curriculo').slideDown();
        }
   });
   
   $('a.inativo').attr('href','javascript:void(0)');
   
   
    $('#frmContact').submit(function() {
        var ret = true;
        $(':input.campo_obrigatorio').each(function(){
            if($(this).val() == "")
            {
                if(!$(this).hasClass("clicado"))
                {
                    //vat html = $(this).parent().html();
                    //$(this).parent().append("Campo Obrigat&oacute;rio");
                    $(this).parent().html(html + "<label id=\"msg\">Campo Obrigat&oatilde;rio</label>");
                    $(this).addClass("clicado");
                     
                }
                ret =  false;
                
            }
            else
            {
                //$(this Label:last-child);
                $(this).removeClass("clicado");
            }    
        });
        return ret
    });
    
});