Actually, your site is poorly developed, you have to open and close tags, put things in the right places and the error has nothing to do with jquery, it has to do with good development practices that you are not following. >
I evaluated your site with this amazing google tool ( PageSpeed Insights ), from 0 to 100, the google of note 9 (mobile) and 11 (desktop) for this page in question, that you put the link ai, this is horrible for the user because it spends a lot of band of his internet.
Do some basic things:
Put the scripts and jquery at the bottom of the page, before.
Use the minimum possible of jquery scripts, or put all of them in a single minified file and include them in the page.
Compress your scripts and if possible html.
Work the images, they are too heavy.
look at F12 the things that are missing on the page, this slows down the loading of the site, since until it sees that they do not exist, it keeps calling them, like none.js, icon and more things on your page.
Youcall02timesthesamescriptsandnoneis.min
callsalluncompressed,thisisnotgood,notethatbootstrap.js
iscalled02times,onlyonthispage.
<scriptsrc="/Content/js/jquery-1.10.2.js"></script>
<script src="/Content/js/bootstrap.js"></script>
<link href="/Content/css/bootstrap.css" rel="stylesheet" />
<link href="/Content/css/business-casual.css" rel="stylesheet" />
<link href="/Content/css/quadradoCursos.css" rel="stylesheet" />
<link href="/Content/css/theme.css" rel="stylesheet" />
<link href="/Content/css/style.css" rel="stylesheet" />
<link href="/Content/css/socialIcons.css" rel="stylesheet" />
<link href="/Content/css/palestrantes.css" rel="stylesheet" />
<link href="/Content/js/bootstrap.js" rel="stylesheet" />
Please review all the code and open and close the tags correctly, use jquery .min and bootstrap .min files and explore the bootstrap potential that has made your site light and usable!