//////////////////////////
//　.sub_accordion
//////////////////////////

$(function() {
	$("#localNavigation li.sub_accordion ul").toggle();
});

$(function() {   
    $("#localNavigation li.sub_accordion > a").click(function(event) {
        event.preventDefault();   
		$(this).next().slideToggle("slow");
    });   
});

//////////////////////////
//　dl.pair pseudo-firstChild
//////////////////////////

$(function() {
		   $("dl.pair dt:first-child, dl.pair dt:first-child + dd").addClass("pseudo-firstChild");
		   });

//////////////////////////
//　dl.links pseudo-firstChild
//////////////////////////

$(function() {
		   $("dl.links dt:first-child, dl.links dt:first-child + dd").addClass("pseudo-firstChild");
		   });


//////////////////////////
//　gosien moushikomi 
//////////////////////////

$(function(){
		   $("form div#offer input#kuchisu").keyup(function(event){
				var kuchi = $(this).val();
				var syubetsu = $(".shu input:checked").val();
				if( syubetsu == "法人・団体"){	
					$("input#kingaku").attr("value", function(){
						return kuchi * 5 + "万円";
					});
						
				};
				if( syubetsu == "個人"){	
					$("input#kingaku").attr("value", function(){
						return kuchi * 1 + "万円";
					});
						
				};
		
			});
		   
		   });