Actually, the problem has nothing to do with the scripts on your page. The following line is the culprit:
Code:
<meta http-equiv="refresh" content="5; URL=http://">
You're trying to reload a blank page every 5 seconds, hence the issue.
BTW, you have a couple of duplicate and unnecessary references to the jQuery library and initialization code, which you should remove. The following lines can be removed:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
and:
Code:
ddsmoothmenu.init({
mainmenuid: "smoothmenu2", //Menu DIV id
orientation: 'v', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu-v', //class added to menu's outer DIV
//customtheme: ["#804000", "#482400"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
Bookmarks