var myFlag = false;
jQuery(function(){
    jQuery('.menu_index').mouseover(function(){
		myFlag = false;
		jQuery('.night').show();
        jQuery('.night_index').show();
        jQuery('.night_hotspot_index_1').show();
        jQuery('.night_hotspot_index_2').show();
    });
    jQuery('.menu_index').mouseout(function(){
		myFlag = true;
		setTimeout(function(){
			if (myFlag) {
				jQuery('.night').hide();
				jQuery('.night_index').hide();
				jQuery('.night_hotspot_index_1').hide();
				jQuery('.night_hotspot_index_2').hide();
			}
		}, 100);
    });
});

