$(function() {
//pulldown
	$('#athomeLink').hover(
		function(){
			$(".pulldownUp", this).css("display","block");
		},
		function(){
			$(".pulldownUp", this).css("display","none");
		}
	);
	$('#inspatreatmentLink').hover(
		function(){
			$(".pulldownUp2", this).css("display","block");
		},
		function(){
			$(".pulldownUp2", this).css("display","none");
		}
	);	
	$('.eachitemlink a').hover(
		function(){
			//$(this).parent().children(".itemIntroduceBox").addClass("selected");
			$(this).parent().children(".itemIntroduceBox").css("display","block");
			$(this).parent().children(".itemIntroduceBox").hover(
				function(){
					$(this).css("display","block");
				},function(){
					//$(this).parent().children(".itemIntroduceBox").removeClass("selected");
					$(this).css("display","none");
				}
			);				
		},
		function(){
			//$(this).parent().children(".itemIntroduceBox").removeClass("selected");
			$(this).parent().children(".itemIntroduceBox").css("display","none");
		}
	);
}); 

