$(document).ready(function() {

	$('input[type=text]').click(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	//Hide Password Label
	$('input[type=text]').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
			$(this).focus().select();
		}
	});
	$('textarea').click(function() {
			$(this).focus().select();
	});
});
