/* 
JavaScript for drop-down menu (IE fix)
...another son of suckerfish.
http://www.htmldog.com/articles/suckerfish/dropdowns/
*/

sfHover = function() {
    var sfEls = document.getElementById("cart");
    if (sfEls != null) {
        var sfElsLI = sfEls.getElementsByTagName("LI");
        for (var i = 0; i < sfElsLI.length; i++) {
            sfElsLI[i].onmouseover = function() {
                this.className += " sfhover";
            }
            sfElsLI[i].onmouseout = function() {
                this.className = this.className.replace(new RegExp(" sfhover\\b"), "");
            }
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

