$(function(){
    $(".m1").hide();
	 $(".m2").hide();
  });

				

				
			$(function(){
				$('.box4').hover(function(){
					//$(this).find(".m1").stop().slideToggle();
					$(this).find(".m1").slideToggle();	
					$(this).find(".m2").slideToggle();	
					$(this).find(".text7 a").addClass('highlight');
					$(this).find(".text8 a").addClass('highlight');
					$(this).find(".text9 a").addClass('highlight');
						
				}, 
				
				
				
				
				
				function(){
					//$(this).find(".m1").stop().animate({top:0}, "normal")
					$(".m1").hide();
					$(".m2").hide();
					$(this).find(".text7 a").removeClass('highlight');
					$(this).find(".text8 a").removeClass('highlight');
					$(this).find(".text9 a").removeClass('highlight');
				});
			})
