﻿ejungle.runtime.controls.footer = {}

/* Initializes the control */
ejungle.runtime.controls.footer.init = function() {
    if ($.browser.msie6) {
        $(".footer-nav ul.level-1 > li").each(function(i) {
            var self = $(this);
            self.width(self.find("a span").width() + 30);
        });
    }
};


