From what I see on your page you are loading jQuery 1.3, 1.7 and 2.0 into different places, this creates conflicts and in fact you only need one of them. The conflict is probably because you have old code, by changing this code the problem must be solved. It is never good to load different versions of the same library.
Leave only the most modern jQuery (2.0) and place new questions on the site that you may have with any errors that you see on the console to have in the console.
What may be your problem is that different pages will fetch jQuery to different directories. In this case there is no overlay of libraries and although it is always good to use more modern versions, it is not urgent to change and can work with both.
What you have to find
<script src="assets/plugins/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/jquery.min.js"></script> // jQuery v1.7.2
24.10.2016 / 17:34