$(document).ready(
	function()
	{
		// Add tooltips for the nav items.
		$(".service-link").mouseenter(
			function()
			{
				$(this).addClass('hover');
				$(this).find('.tooltip').fadeIn(250);
			}
		).mouseleave(
			function()
			{
				$(this).removeClass('hover');
				$(this).find('.tooltip').fadeOut(250);
			}
		);
	}
);
