/* */
$(document).ready(function(){

	$("ul#services_list li a").hover(function() {
		$(this).next("ul").stop(true, true).animate({opacity: "show"}, "slow");
	}, function() {
		$(this).next("ul").animate({opacity: "hide"}, "fast");
	});

});



/*
$("").hover(
	function () {
		$(this).
		$(this).append($("<span> ***</span>"));
	}, 
	function () {
		$(this).find("span:last").remove();
	}
);
*/