
$(document).ready(function() {
	//Для меню
	$("#services li").mouseenter(function(){
		$(this).children("ul").show();
		$(this).addClass("act");
	}).mouseleave(function(){
		$(this).children("ul").hide();
		$(this).removeClass("act");
	});
	
	
});
