function makemenu44() {
    var ddmx44 = new DropDownMenuX('menu44');
    ddmx44.delay.show = 0;
    ddmx44.iframename = 'ddmx44';
    ddmx44.delay.hide = 50;
    ddmx44.position.levelX.left = -1;
    ddmx44.position.levelX.top = 0;
    ddmx44.position.level1.left = 0;
    ddmx44.position.level1.top = -5;
    ddmx44.fixIeSelectBoxBug = true;
    ddmx44.init();

    // Fix About Shleppers menu to open to the left
    /*jQuery("td > div[@class = 'section']").each(function() {
    alert(parseInt(this.style.left) + parseInt(this.style.width));
    if (parseInt(this.style.left) + parseInt(this.style.width) > screen.width - 50)
    {
    alert("old left: " + this.style.left);
    this.style.left = (screen.width - 50 - parseInt(this.style.width)) + "px";
    alert("new left: " + this.style.left);
    parentLeft = parseInt(this.style.left);
    jQuery("div[@class = 'section']", this).each(function() {
    alert("child left: " + this.style.left);
    //this.style.left = (parentLeft - parseInt(this.style.width)) + "px";
    this.style.left = (-1 * parseInt(this.style.width)) + "px";
    alert("new child left: " + this.style.left);
    });
    }
    });*/
    jQuery("#menu44-7-section")[0].style.left = (parseInt(jQuery("#menu44-7-section")[0].style.left) - 100) + "px";
    jQuery("#menu44-7-section div[@class = 'section']").each(function() {
        this.style.left = (-1 * parseInt(this.style.width)) + "px";
    });

}
if (typeof window.addEventListener != "undefined")
    window.addEventListener("load", makemenu44, false);
else if (typeof window.attachEvent != "undefined") {
    window.attachEvent("onload", makemenu44);
}
else {
    if (window.onload != null) {
        var oldOnload = window.onload;
        window.onload = function(e) {
            oldOnload(e);
            makemenu44()
        }
    }
    else {
        window.onload = makemenu44();
    }
}
