/* © 2007 Girl Gamer */

$(function() { inputFocus(); });


function inputFocus() {
	$(' .shy').focus(function() {
		if (!this.shyValue) this.shyValue = $(this).val();

		$(this).removeClass('shy');
		
		if ($(this).val() == this.shyValue) $(this).val('');
		
	})

	.blur(function() {
		if ($(this).val() == this.shyValue || $(this).val() == '')
			$(this).addClass('shy').val(this.shyValue);
	});
}