It looks like there are a couple of small things falling over, no biggie, should be easy to solve.
Firstly, I see you have the following scripts in the <head> section
Code:
<script type="text/javascript" src="http://binghamdentalutah.com/wp-content/themes/Bingham%20Dental%20Utah/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://binghamdentalutah.com/wp-content/themes/Bingham%20Dental%20Utah/js/faq.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script src="http://binghamdentalutah.com/wp-content/themes/Bingham%20Dental%20Utah/js/slides.min.jquery.js"></script>
And near the bottom of the page (probably in your footer.php)
Code:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js?ver=3.4.2'></script>
It seems the first jQuery script (1.7.2) isn't on the server, no matter, we'll get rid of it anyway 
What happens next is that your faq.js gets executed, but it of course doesn't run because jQuery isn't yet defined.
Next up, jQuery is included again, which is fine, but if the first jQuery *would* have loaded then it would now be overwritten.
Now the slides.min would run, but because there is another reference to jQuery in the footer, the $ variable gets overwritten again, which means the slides plugin gets deleted inadvertently.
I would recommend that you place your faq and slides plugin script in the footer of the theme, remove the reference to jquery 1.7.2 from the header, and remove the reference to jQuery 1.4 from the footer.
I am assuming that the jQuery 1.5.1 in the header is the one that Wordpress injects into the header, let me know if this is an issue for you and I can show you how to prevent this from happening or how to change the version.
Bookmarks