$(document).ready(function () {
    $('.language .drop-down, .language .active-lang').click(function (e) {
        e.preventDefault();
        
        $('.language').animate({height: 80});
    });

    $('.language .drop-down a').click(function () {
        e.stopPropagation();
    })
    
    $('body').click(function () {
        if ($('.language').height() == '60')
            $('.language').animate({height: 20});
    });
    
    $('.contact-nav li').click(function (e) {
        e.preventDefault();
        
        $('.contact-nav li.active').removeClass('active');
        $(this).addClass('active');
        
        if ($(this).hasClass('empleados'))
        {
            $('#ContentReason').val('empleado');
            $('#company-field').hide();
        }
        else if ($(this).hasClass('clientes'))
        {
            $('#ContentReason').val('cliente');
            $('#company-field').show();
        }
        else
        {
            $('#ContentReason').val('distribuidor');
            $('#company-field').show();
        }
    });
    
    if ($('.contact-nav li').length)
    {
        $('.contact-nav li.active').trigger('click');
    }
});
