$(function(){
	$(".close_btn").click(function(){
		$(this).parents(".close_banner").hide();
	})

	$("#nlist .nlistshow").hover(function(){
		$("#nlist .nlistshow").show();
		$(this).hide();
		$("#nlist .nlisthide").hide();
		$(this).next(".nlisthide").show();
	})

	$(".in_pro2 li").hover(function(){
		$(this).find("h4").addClass("in_pro2_ch");
		$(this).find(".in_pro2_list").show();
	},function(){
		$(this).find("h4").removeClass("in_pro2_ch");
		$(this).find(".in_pro2_list").hide();
	})

	$("#scshow").hover(function(){
		$(".scbox_tc").show();
	},function(){
		$(".scbox_tc").hide();
	})
});
