jQuery(function(){
								
/***index******************************/

	//各ボタン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/"));
			}
		)
	;
	
	//リスト内アンカークリック時に別ウィンドウで開く
	$(".user a")
		.click(
			function () {
				_window = window.open($(this).attr('href'), 'detail', 'width=550px,height=840px,resizable=yes,scrollbars=yes');
				_window.focus();
				return false;
			}
		)
	;
	
	//
	$("input:radio").attr('name', 'sex')
		.click(
			function () {
				if ($(this).val() == 'm') {
					$("#pc_mail").removeClass('hide');
				}
				else {
					$("#pc_mail").addClass('hide');
				}
			}
		)
	;
	
	
	$("#sex input")
		.click(
			function () {
				if ($(this).val() == 'm') {
					$("#mailaddress").text('メールアドレス');
				}
				else {
					$("#mailaddress").text('携帯アドレス');
				}
				
			}
		)
	;
});
