You cannot have this (red) - looks like you inserted some scripts into the stylesheet:
Code:
<style type="text/css">
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3343841-2");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<!--
#Layer1 {
position:absolute;
width:200px;
height:115px;
z-index:7;
}
body {
margin-top: 17px;
}
body,td,th {
font-size: .9em;
}
.style5 {color: #CC0000; font-weight: bold; }
.style6 {
color: #FFFFFF;
font-family: "Arial Black";
}
.style7 {
font-family: "Arial Black";
font-weight: bold;
}
-->
</style>
Try it like so:
Code:
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3343841-2");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<style type="text/css">
<!--
#Layer1 {
position:absolute;
width:200px;
height:115px;
z-index:7;
}
body {
margin-top: 17px;
}
body,td,th {
font-size: .9em;
}
.style5 {color: #CC0000; font-weight: bold; }
.style6 {
color: #FFFFFF;
font-family: "Arial Black";
}
.style7 {
font-family: "Arial Black";
font-weight: bold;
}
-->
</style>
There could also be other problems. Ah, yes - you also have an onload conflict. Remove:
Code:
window.onload=fillup;
from the motiongallery.js file, and add to your body onload:
Code:
<body onload="fillup();MM_preloadImages('images/nav/evemb.gif')">
Bookmarks