﻿$(document).ready(function() {
    $('input[type="text"][placeholder], textarea[placeholder]').each(function() {
        addPlaceholder(this);
    });
    $('input[type="text"][placeholder], textarea[placeholder]').focus(function() {
        removePlaceholder(this);
    });
    $('input[type="text"][placeholder], textarea[placeholder]').blur(function() {
        addPlaceholder(this);
    });
});
function removePlaceholder(e) {
    var originalStyle = $(e).attr("style");
    $(e).attr("style", $(e).attr("style").toString().replace("color: rgb(204, 204, 204);", ""));
    if (originalStyle != $(e).attr("style"))
        $(e).val("");
}
function addPlaceholder(e) {
    if ($(e).val() == "") {
        $(e).val($(e).attr("placeholder"));
        $(e).attr("style", $(e).attr("style") + ";color: rgb(204, 204, 204);");
    }
}