// Copyright (c) 2007 SCREAMO.
// http://www.screamo.jp/
// This is licensed under the CC-GNU LGPL, version 2.1 or later.
// For details, see: http://creativecommons.org/licenses/LGPL/2.1/

$(function(){
	$("input[@type='text'],input[@type='password'],textarea")
		.focus(function(){
			$(this).addClass("focus");
		})
		
		.blur(function(){
			$(this).removeClass("focus");
		});

    $("#email02")
    	.focus(function() {
            if( this.value == "確認の為、もう一度ご入力ください。" ) {
                this.value = "";
            }
        })
        
        .blur(function() {
            if( this.value == "" ) {
                this.value = "確認の為、もう一度ご入力ください。";
            }
        });
});
