// JavaScript Document

$(function(){	
	$(".td_down1").hover(
		function(){
			$(".nav_tit .text02").addClass("text2");
			$(this).find(".nav_down").show();		
		},
		function(){
			$(".nav_tit .text02").removeClass("text2");
			$(this).find(".nav_down").hide();
		}
	);
	
	$(".td_down2").hover(
		function(){
			$(".nav_tit .text02").addClass("text2");
			$(this).find(".nav_down").show();		
		},
		function(){
			$(".nav_tit .text02").removeClass("text2");
			$(this).find(".nav_down").hide();
		}
	);
	$(".td_down3").hover(
		function(){
			$(".nav_tit .text02").addClass("text2");
			$(this).find(".nav_down").show();		
		},
		function(){
			$(".nav_tit .text02").removeClass("text2");
			$(this).find(".nav_down").hide();
		}
	);
	$(".td_down4").hover(
		function(){
			$(".nav_tit .text02").addClass("text2");
			$(this).find(".nav_down").show();		
		},
		function(){
			$(".nav_tit .text02").removeClass("text2");
			$(this).find(".nav_down").hide();
		}
	);
	$(".td_down5").hover(
		function(){
			$(".nav_tit .text02").addClass("text2");
			$(this).find(".nav_down").show();		
		},
		function(){
			$(".nav_tit .text02").removeClass("text2");
			$(this).find(".nav_down").hide();
		}
	);
	$(".td_down6").hover(
		function(){
			$(".nav_tit .text02").addClass("text2");
			$(this).find(".nav_down").show();		
		},
		function(){
			$(".nav_tit .text02").removeClass("text2");
			$(this).find(".nav_down").hide();
		}
	);
	
	$(".nav_down .arrow").hover(
		function(){
			$(this).addClass("arrow1");			
			$(this).children(".dn2").show();
			$(this).find("a").first().css({color:"#fff"})
		},
		function(){
			$(this).removeClass("arrow1");
			$(this).children(".dn2").hide();
			$(this).find("a").first().css({color:"#ffaacb"})
		}
	)
	
	$(".scm .tit").click(
		function(){
			$(this).next().toggle()
		}
	)

});

