jQuery(function(){
	
	var sexValue = $("#sexValue").val();
	
	if (sexValue == 'm') {
		$(".mMail").hide();
		$(".Mail").show();
	}
	else {
		$(".mMail").show();
		$(".Mail").hide();
	}
	
	
	//PNG透過処理
	$('img[src$=png]').pngfix();
	
	//各ボタンhover
	$("img, input:image")
		.hover(
			function () {
				$(this).attr('src',$(this).attr('src').replace("/off/", "/on/"));
			},
			function () {
				$(this).attr('src',$(this).attr('src').replace("/on/", "/off/"));
			}
		)
	;
	
	//男女でメールアドレス表示部分を切り替える
	$(".Sex")
		.change(
			function () {
				var getSexVal = $(this).val();
				
				$("#sexValue").val(getSexVal);
				
				if (getSexVal == 'f') {
					$(".mMail").show();
					$(".Mail").hide();
				}
				else {
					$(".mMail").hide();
					$(".Mail").show();
				}
			}
		)
	;
	
	
});

