﻿$(document).ready(function () {
    if (Modernizr.input.placeholder) {
        $('input[placeholder]').removeClass('placeholder');
        return;
    }
    
    $('input[placeholder]').live("focusin", function () {
        if ($(this).hasClass('placeholder')) {
            if ($(this).val() == $(this).attr('placeholder')) {
                $(this).val('');
                $(this).removeClass('placeholder');
            }
        }
    });

    $('input[placeholder]').live("keypress", function () {
        if ($(this).hasClass('placeholder')) {
            if ($(this).val() == $(this).attr('placeholder')) {
                $(this).val('');
                $(this).removeClass('placeholder');
            }
        }
    });

    $('input[placeholder]').live("focusout", function () {
        if ($(this).val() != '') { return; }
        $(this).addClass('placeholder');
        $(this).val($(this).attr('placeholder'));
    });

    $('input[placeholder]').each(function () {
        if ($(this).val() != '' && $(this).val() != $(this).attr('placeholder')) { return; }
        $(this).val($(this).attr('placeholder')).addClass('placeholder');
    });

    $('form').submit(function () {
        $(this).find('.placeholder').each(function () {
            $(this).removeClass('placeholder');
            $(this).val('');
        });
    });
});


