$(document).ready(function(){
	$(".main_solution").hover(
			function(){
				$(this).find('ul').stop(true, true);
				$(this).find('ul').slideDown("slow");},
			function(){
				$(this).find('ul').stop(true, true);
				$(this).find('ul').slideUp("slow");}
		);
});
