$(function(){
	$(".check_hover").hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
			if ($(".active").size() > 0) {
				$(".active_buff").removeClass('active_buff');
			}else{
				$(".active_buff").addClass('active');
				$(".active_buff").removeClass('active_buff');
			}
			if ($(".head_box .top_menu").children(".active").size() == 0) {
				$(".head_box").height(66);
				$(".head_box_bgr").height(66);
			}
		}
	);
});
$(function(){
	$(".check_sub").hover(
		function(){
			$(".active").addClass('active_buff');
			$(".active").removeClass('active');
			$(this).addClass('sub');
			if($(this).children("ul").size() == 1){
				$(".head_box").height(85); 
				$(".head_box_bgr").height(85); 
			}
		},
		function(){
			$(this).removeClass('sub');
			
		}
	);
});
$(function(){
	if($(".head_box .top_menu").children(".active").size() > 0){
		$(".head_box").height(85); 
		$(".head_box_bgr").height(85);
	}
});
