There are a couple of errors on your page. Firstly, the code in red below:
Code:
<script type="text/javascript">
<!--
<script type="text/javascript" src="jquery-1.2.2.pack.js">
<script type="text/javascript" src="ddaccordion.js">
They should not be inside the outermost script tag. Modify the above to:
Code:
<script type="text/javascript" src="jquery-1.2.2.pack.js"></script>
<script type="text/javascript" src="ddaccordion.js"></script>
<script type="text/javascript">
<!--
Secondly, inside jumpto.js, you need to modify the line below:
Code:
crosslogo.innerHTML='<a href="../'+logolink+'">'+displayed+'</a>'
to:
Code:
crosslogo.innerHTML='<a href="'+logolink+'">'+displayed+'</a>'
Bookmarks