﻿$(document).ready(function() {	
	$('#username').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('#username').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
		}
	});
	$('#password').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('#password').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
		}
	});
});
