Text (925) 389-8233
and Dr. Michiyo will get
right back to you
Text (925) 389-8233
and Dr. Michiyo will get right back to you

Contact Form
Contact Form

Location
2491 Tassajara Lane
Danville, CA 94526
By Appointment Only
Text or Call (925) 389-8233
Make a Payment

jQuery(function ($) {
jQuery(".coaching-button").click(function () {
jQuery(".coaching-modal")
.css({
opacity: "0",
display: "block",
})
.show()
.animate({ opacity: 1 });
});
jQuery(".coaching-close").click(function () {
jQuery(".coaching-modal")
.css({
opacity: "1",
display: "none",
})
.show()
.animate({ opacity: 0 });
});
jQuery(".therapy-button").click(function () {
jQuery(".therapy-modal")
.css({
opacity: "0",
display: "block",
})
.show()
.animate({ opacity: 1 });
});
jQuery(".therapy-close").click(function () {
jQuery(".therapy-modal")
.css({
opacity: "1",
display: "none",
})
.show()
.animate({ opacity: 0 });
});
});