/*
 * use jQuery JavaScript Library v1.3.2
 */
jQuery(function($) {
	var postfix = '_on';
	$('.rollover img').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(function() {
			img.attr('src', src_on);
		}, function() {
			img.attr('src', src);
		});
	});
});

jQuery(function($) {
$("dt a").hover(
  function () {
    $(this).css("opacity",0.6);
  },
  function () {
    $(this).css("opacity",1.0);
  }
);
$(".bannerList-1 a").hover(
  function () {
    $(this).css("opacity",0.6);
  },
  function () {
    $(this).css("opacity",1.0);
  }
);
$(".serviceContact a img").hover(
  function () {
    $(this).css("opacity",0.6);
  },
  function () {
    $(this).css("opacity",1.0);
  }
);
$(".serviceContentsWrap dt a").hover(
  function () {
    $(this).css("opacity",1.0);
  },
  function () {
    $(this).css("opacity",1.0);
  }
);
});
jQuery(function($) {
$(".basic_btn").hover(
  function () {
    $(this).toggleClass("over");
  },
  function () {
    $(this).toggleClass("over");
  }
);
});
jQuery(function($) {
$(".btn").hover(
  function () {
    $(this).toggleClass("over");
  },
  function () {
    $(this).toggleClass("over");
  }
);
});
jQuery(function($) {
$(".basic_btn-02").hover(
  function () {
    $(this).toggleClass("over");
  },
  function () {
    $(this).toggleClass("over");
  }
);
});
jQuery(function($) {
$(".basic_btn-03").hover(
  function () {
    $(this).toggleClass("over");
  },
  function () {
    $(this).toggleClass("over");
  }
);
});
jQuery(function($) {
$("#globalNav dd").hide();
$("#globalNav dt").hover(
  function () {
    $("#globalNav dd").show();
  },
  function () {
    $("#globalNav dd").hide();
  }
);
$("#globalNav dd").hover(
  function () {
    $(this).show();
  },
  function () {
    $(this).hide();
  }
  
);
});
///service/images/aside-btn-01.gif rollover Settings
function changeMapImage(imgPath) {
  document.getElementById('contactBtn01Src').src = imgPath;
}
