// 価格表の切り替え
function changePrice(obj, tableID){
	var index	=	obj.options[obj.selectedIndex].value;
	var t	=	$("#"+tableID);
	var tr	=	t.find("tr:not(:first-child)");
	for( var i = 0; i <= tr.length; i++ ){
		tr.eq(i).find("td:not(:first-child)").each(function(td_index){
			if( !$(this).hasClass("h") )
				$(this).addClass("h");
			if( td_index+1 == index )
				$(this).removeClass("h");
		});
	}
}

