$().ready(function(){


$('.switch a').toggle(function(){
$('.switch a').text('スケジュール');
$('.tabContA').hide();
$('.tabContB').show();
},function(){
$('.switch a').text('料金・ご案内');
$('.tabContB').hide();
$('.tabContA').show();
});

/* 価格の無いtrを削除 */
 var $rowNum = $('.rowNum').attr('rowspan');
$('.extd').each(function(){
 var $td = $(this).text();
 if (!$td){
 	 $(this).parent('tr').hide();
 	 $rowNum = $rowNum -1;
		$('.rowNum').attr('rowspan',$rowNum);
	}
});


}); /* document ready end */
