The main issue I can while scanning your page's source is how you've defined the tab contents (that appear onMouseover). You're using a different class name for each of the DIVs, for example:
Code:
<div id="sc1" class="homecontent" align="center">..</div>
<div id="sc2" class="aboutcontent" align="center">...</div>
etc. This is fine only if you've also modified the CSS so all these class names have "display: none" set. Something like:
Code:
<style type="text/css">
.homecontent, .aboutcontent, etc{
display: none;
}
</style>
I see you've removed the entire default style sheet for the script, which will add to your confusion unless you have a good understanding of why they're there.
Bookmarks