﻿MJL.event.add(window, "load", function(event) {
    // MJL に関係するコードはこの中に記述
    // MJL.enable.flash("flash");
    // MJL.enable.window("window");
    // MJL.enable.tab("tabs");
    // MJL.enable.styleSwitcher("styleSwitcher");
    // MJL.enable.heightEqualizer("equalize");
    MJL.enable.rollover("roll");
}, false);

// IE6 PNG FIX 20090328
// 24ビット透過PNGに対応しないIE6の場合は、256色透過GIFを表示

window.onload = function(){
	if(navigator.appVersion.indexOf("MSIE 6") != -1){
		document.getElementById("indexLinkImg").src = "/common/images/indexlink.gif";
		}
	}