// JavaScript Document

$(function() {
	$("#indexCaseList a").easyTooltip();
	$("#indexCaseList a img").attr("title", "");
	$("#indexCaseList dl:nth-child(3n-2)").addClass("left");
	
	$('#indexCaseList dd a').css("opacity","0.60");
	$("#indexCaseList dd a").hover(
		function() {
			$(this).css("opacity","1.00");
		},
		function() {
			$(this).css("opacity","0.60");
		}
	);
});
