$(document).ready(function () {
	$('div.menu-class').click(function () {
		if ($('ul.the-menu').is(":hidden")) {
			//$('ul.the-menu').slideDown("medium");
			$('ul.the-menu').css("display", "block");
			$('div.menu-class a').css("background-color", "#18232e");
		} else {
			//$('ul.the-menu').slideUp();
			$('ul.the-menu').css("display", "none");
			$('div.menu-class a').css("background-color", "transparent");
		}
	});
	
	$("a[name^='svc-a-']").each(function() {
	    $(this).mouseover(function() { 
			$(this).find('img').each(function() {
				var src = $(this).attr("src").replace(/(\d)/, "$1-over");
				$(this).attr("src", src);
			});
		});
		$(this).mouseout(function() {
			$(this).find('img').each(function() {
				var src = $(this).attr("src").replace('-over','');
				$(this).attr("src", src);
			});
		});
	});
});

