/* Internet Explorer dropdown menu compatability */
cheersfurnituredropdown = function() 

{ for (var i = 0; i < document.styleSheets.length; i++)

for (var x = 0; x < document.styleSheets[i].rules.length ; x++) { cascadingstylesheet = document.styleSheets[i].rules[x]; if (cascadingstylesheet.selectorText.indexOf("LI:hover") != -1) {

Select = cascadingstylesheet.selectorText.replace(/LI:hover/gi, "LI.cheersfurnituredropdown");
document.styleSheets[i].addRule(Select , cascadingstylesheet.style.cssText);} } var cheersfurnituredropdown = document.getElementById("navigation").getElementsByTagName("LI"); for (var i=0; i<cheersfurnituredropdown.length; i++) {

cheersfurnituredropdown[i].onmouseover= function() { this.className+=" cheersfurnituredropdown"; }

cheersfurnituredropdown[i].onmouseout= function() { this.className=this.className.replace (new RegExp(" cheersfurnituredropdown\\b"), "");}	} }

if (window.attachEvent) window.attachEvent("onload", cheersfurnituredropdown);

