﻿

$(document).ready(function () {

    if ($("._LabelImput").length > 0) {
        $("._LabelImput input").each(function () {
            if ($(this).val().length > 0)
                $(this).closest('._LabelImput').find('span').fadeOut('fast');

            $(this).bind({
                focus: function () {
                    $(this).closest('._LabelImput').find('span').fadeOut('fast');
                },
                blur: function () {
                    if ($(this).val().length == 0)
                        $(this).closest('._LabelImput').find('span').fadeIn('fast');
                }
            });
        });

        $("._LabelImput span").click(function () {
            $(this).fadeOut('fast');
            $(this).closest('._LabelImput').find('input').focus();
        });
    }


    $(document).ready(function () {
        $(".btap").click(function () {
            $(".btp").toggle();

        });
         
    });


});



     



















