/*
 * デバッグ用関数
 */
var var_dump = function (obj) {
	var tbl = PrettyPrint(obj);
	$(document.body).append(tbl);
};
