var base = 'http://www.fiddlepal.com/';

var denim = {
  src: base + 'fonts/denim-bold.swf',
	ratios: [7,1.32,11,1.31,13,1.24,14,1.25,19,1.23,27,1.2,34,1.19,42,1.18,47,1.17,48,1.18,69,1.17,74,1.16,75,1.17,1.16]
};

sIFR.useStyleCheck = true;
sIFR.activate(denim);
sIFR.replace(denim, {selector:'h1', css:'.sIFR-root { color: #4d4d4d; }'});
sIFR.replace(denim, {selector:'h2', css:'.sIFR-root { color: #8aa124; }'});
sIFR.replace(denim, {selector:'h3', css:'.sIFR-root { color: #4d4d4d; }'});

//suckerfish call. jQuery would be better, but I don't want the load time.
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("topnav");
for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
		node.onmouseover=function() {
		this.className+=" hover";
  	}
  		node.onmouseout=function() {
  		this.className=this.className.replace(" hover", "");
    }
   }
  }
 }
}
window.onload=startList;