$(document).ready(function() {
    $('#login form input').each(function() {
        var defaultValue = $(this).attr('title');

        if (this.name != 'submit') {
            if ($.trim(this.value) == '') {
                this.value = defaultValue;
            }
        }

        $(this).focus(function() {
            if (this.value == defaultValue){
                this.value = '';
            }
            if(this.value != defaultValue){
                this.select();
            }
        });

        $(this).blur(function() {
            if ($.trim(this.value) == '') {
                this.value = defaultValue;
            }
        });
    });
});

