$(function(){
	$('.way_price > .info').hide();
	$('.way_price > .head').click(function(){
		$(this).next().toggle('fast');
	});
});