We've been working on a redesign. Check it out and let me know what you think.
The Home and CD Rates links work on the top navigation bar.
On the CD Rates page, the Jumbo CD Rates, Compare CD Rates and Historical CD Rates links work in the left navigation.
There is also a link to the current site so that you can compare.
Redesign link
I did notice that Firefox doesn't link some of our links on the historical page and doesn't seem to like the javascript that I use to set the "current" page links.
Here is the java if anyone has any ideas. Works fine in IE6, haven't tested it in IE7 yet.
function startList() {
if (document.all&&document.getElementById) {
var navRoot = document.getElementById("outer2");
if (navRoot != null) {
var listItems = navRoot.getElementsByTagName('A');
for (i=0; i<listItems.length; i++) {
if (i == initActiveHMenuItem) {
listItems[i].className+=" cur";
break;
}
}
}
var navRoot = document.getElementById("nav");
if (navRoot != null) {
var listItems = navRoot.getElementsByTagName('A');
for (i=0; i<listItems.length; i++) {
if (i == initActiveVMenuItem) {
listItems[i].className+=" cur2";
break;
}
}
}
}
}
And here is the code from the index page to initialize it:
<SCRIPT type="text/javascript" src="menu.js"></script>
<SCRIPT type="text/javascript" >
window.onload = startList;
var initActiveHMenuItem = 0;
var initActiveVMenuItem = -1;
</script>
Thank you,