$(document).ready(function() {
	$('#dd_serv').hover(function() {
		$(this).find('ul').slideDown(100);
	},function() {
		$(this).find('ul').slideUp(100);
	});
});

