MJL.event.add(window, "load", function(event) {
    // MJL.enable.tab("tabs");
    MJL.enable.heightEqualizer("column_col2", {groupBy : 2});
    MJL.enable.heightEqualizer("column_col3", {groupBy : 3});
    MJL.enable.window("pop_remocon", {width: 900, height: 600, scrollbars: "yes", toolbar: "no", location: "no", menubar: "no", status: "no"});
    MJL.enable.window("pop_serial", {width: 900, height: 600, scrollbars: "yes", toolbar: "no", location: "no", menubar: "no", status: "no"});
    MJL.enable.window("newWindow");

}, false);


/*
 * jQuery
 */
jQuery.noConflict();

jQuery(function(){
    jQuery("#enqueteArea").each(function(){
        _self = jQuery(this);
        var _list = _self.find("ul");
        jQuery("> li", _list).click(function(){
            _list.hide();
            var _id = jQuery(this).attr("id");
            jQuery("." + _id + "-reason").fadeIn(200);
            return false;
        });
        jQuery("#submit").click(function(){
            jQuery(".no-reason").hide();
            jQuery(".no-reason-message").fadeIn(200);
            return false;
        });
    });

    jQuery("#enqueteArea").parent().parent().parent().parent().css("overflow", "visible");
    jQuery("#supportFullArea").parent().parent().parent().css("overflow", "visible");
});

