﻿Offerta.InitInputTitle = function (root) {
    $(root).find(".input-title").focus(function () {
        if ($(this).val() == $(this)[0].title) {
            $(this).val("");
        }
        $(this).removeClass("input-title-active");
    });

    $(root).find(".input-title").blur(function () {
        if ($(this).val() == "") {
            $(this).addClass("input-title-active");
            if ($(this).val() != $(this)[0].title) $(this).val($(this)[0].title);
        }
        else if ($(this).val() != $(this)[0].title) {
            $(this).removeClass("input-title-active");
        }
    });

    $(root).find(".input-title").blur();
}
