$(document).ready(function(){
	if(!$("#CharaMcFamilyName[type='hidden']").length){
		var temp = myCookeiJar.get('userDataMc');
		if(temp) userData = temp;
		cookieLoad(userData,"Mc");
	}
	$(".classCharaMcName").focus(function(){
		this._defaultValue = this.value;
		this.value = '';
		this.onblur = function() {
			if( this.value === '' ) {
				this.value = this._defaultValue;
			}
		}
		this.onfocus = function() {
			if( this.value === this._defaultValue ) {
				this.value = '';
			}
		}
	});
});

