
$(document).ready(	
	function() {
		$("#block_services .content").hover(
			function() { $(this).find("span.hidden").fadeIn(); $(this).find("span.dots").hide(); },
			function() { $(this).find("span.hidden").fadeOut(); $(this).find("span.dots").show(); }
		)
	}
);