﻿


$(function() {

    $(".form input, .form textarea, .form select").focus(function() {
        $(this).addClass("selected");
        $(this).parents('tr:first').find('.toolTip').fadeIn(500);
    })

    $(".form input, .form textarea, .form select").blur(function() {
        $(this).removeClass("selected");
        $(this).parents('tr:first').find('.toolTip').fadeOut(500);
    })


//    $('.btn').each(function() {
//        var b = $(this);
//        var original = b;
//        var tt = b.text() || b.val();
//        if ($(':submit,:button', this)) {
//            b = $('<a>').insertAfter(this).addClass(this.className).attr('id', this.id).click(function() { $(original).click(); });
//            //ocultando original
//            original.addClass("hide");
//        }
//        b.text('').prepend('<i></i>').append($('<span></span>').text(tt).prepend('<span></span><i></i>'));
//    });


});



function ShowExtraInfo() {

    if ($('.Nombres').val().length > 0) {
        $(".AdicionalInfo").show(1500);
    }
}



