$(document).ready(function () {
    clearValuesSwapLabel = function () {
        var inputGroup = $('.clear-value-replace');
        inputGroup.each(function () {
            $(this).val($(this).attr('title'));
        });
        inputGroup.focus(function () {
            if ($(this).val() == $(this).attr('title')) {
                $(this).val('');
            }
        });
        inputGroup.blur(function () {
            if ($(this).val() == '') {
                $(this).val($(this).attr('title'));
            }
        });
    }
    clearValuesSwapLabel();
});
