I've checked out your page. The problem is that the HTML for your tabs are missing a lot of things from the default script. What you have:
Code:
<div id="ddimagetabs" class="halfmoon"><ul>
<li><a href="/homes3/cindy-index.html">Home</a></li>
<li><a href="/about.htm">About Me</a></li>
<li><a href="/listings.html">Listings</a></li>
<li><a href="http://kcbor.fnismls.com/idx/SearchIDX.aspx?RMLS_SESSION_GUID=%7bec943612-a68d-484e-a548-d48b7338dcb6%7d&MLS=KCBOR&SUBSCRIBER=a8be30bb-b63f-4394-94e1-fcc6f131e5e9&class=1" target="_blank">Search</span></a></li>
<li><a href="/contact.html">Contact Me</a></li>
</ul></div>
What it should look like:
Code:
<div id="ddimagetabs" class="halfmoon">
<ul>
<li><a href="http://www.dynamicdrive.com" onMouseover="expandcontent('sc1', this)">Home</a></li>
<li><a href="http://www.dynamicdrive.com/new.htm" onMouseover="expandcontent('sc2', this)">DHTML</a></li>
<li class="selected"><a href="http://www.dynamicdrive.com/style/" onMouseover="expandcontent('sc3', this)">CSS</a></li>
<li><a href="http://www.dynamicdrive.com/forums/">Forums</span></a></li>
<li><a href="http://tools.dynamicdrive.com/imageoptimizer/">Gif Optimizer</a></li>
</ul>
</div>
<DIV id="tabcontentcontainer">
<div id="sc1" class="tabcontent">
Return to the <a href="http://www.dynamicdrive.com">frontpage</a> of Dynamic Drive.
</div>
<div id="sc2" class="tabcontent">
See the new scripts recently added to Dynamic Drive. <a href="http://www.dynamicdrive.com/new.htm">Click here</a>.
</div>
<div id="sc3" class="tabcontent">
Original, practical <a href="http://www.dynamicdrive.com/style/">CSS codes and examples</a> such as CSS menus for your site.
</div>
</DIV>
Please revisit the DD page for instructions on how to define the HTML for the menu.
Bookmarks