    window.onload = function() {
        // Fix PNG for Ie 6
        if ((/MSIE 6\.0/).test(navigator.userAgent) && !(/MSIE 7\.0/).test(navigator.userAgent) && !(/MSIE 8\.0/).test(navigator.userAgent)) {
            DD_belatedPNG.fix(".FixPng");
        }
    }

    $(document).ready(function() {

        function hideLabel(obj, text) {
            $("#" + obj).focus(function() {
                if (jQuery(this).val() == text) {
                    jQuery(this).val("");
                }
            });
            jQuery("#" + obj).blur(function() {
                if (jQuery(this).val() == "") {
                    jQuery(this).val(text);
                }
            });
        }

        if ($(".MenuContent").length > 0) {

            jQuery(".MenuContent > ul > li").each(function() {
                var li = jQuery(this);
                li.bind("mouseover", function(evt) {
                    jQuery(".MenuContent > ul > li").removeClass("Active");
                    jQuery(this).addClass("Active");
                    jQuery(this).find(".SubLeftMenu > ul").css("display", "block");
                    evt.stopPropagation();
                });
                jQuery(document).bind("mouseout", function() {
                    li.removeClass("Active");
                    jQuery(this).find(".SubLeftMenu > ul").css("display", "none");
                });
            });

            jQuery(".SubLeftMenu > ul > li").each(function() {
                var li = jQuery(this);
                li.bind("mouseover", function(evt) {
                    jQuery(this).find(".SubSubLeftMenu > ul").css("display", "block");
                    //evt.stopPropagation();
                });
                jQuery(document).bind("mouseout", function() {
                    jQuery(this).find(".SubSubLeftMenu > ul").css("display", "none");
                });
            });
        }
    });

