// JavaScript Document
		  $(document).ready(function()
		  {
			$("span.service").mouseover(function () 
			{
			 $(this).addClass("servicehover");
			});
			$("span.service").mouseout(function () 
			{
			 $(this).removeClass("servicehover");
			});
		  });
		  $(document).ready(function()
		  {
			$("span.fleet").mouseover(function () 
			{
			 $(this).addClass("fleethover");
			});
			$("span.fleet").mouseout(function () 
			{
			 $(this).removeClass("fleethover");
			});
		  });
		  $(document).ready(function()
		  {
			$("span.it").mouseover(function () 
			{
			 $(this).addClass("ithover");
			});
			$("span.it").mouseout(function () 
			{
			 $(this).removeClass("ithover");
			});
		  });
		  $(document).ready(function()
		  {
			$("span.group").mouseover(function () 
			{
			 $(this).addClass("grouphover");
			});
			$("span.group").mouseout(function () 
			{
			 $(this).removeClass("grouphover");
			});
		  });

