MJL.event.add(window, "load", function() {
    // 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");
});

// MJL と無関係なコードはこの先に記述

// first-child 設定
$(function() {
	$(".row .block:first-child").css("margin-left","0");
});

// colorbox,equalbox 設定
$(document).ready(function(){
	$(".nomerumise,.contactForm").colorbox({width:"630px", height:"80%", iframe:true});
	$(".labelImg").colorbox({width:"280px", height:"320px", iframe:true});
	$("#box1,#box2,#box3,#box4,#box5,#box6,#box7").equalbox()
});



