﻿$(document).ready(function() {
	// Service Menu Link Mouse Over Event Handler  
	$("ul.menu li a").hover(
		function () {
			$(this).find("span").addClass("mhover");
		}, 
		function () {
			$(this).find("span").removeClass("mhover");
		}
	);	
});
