$(document).ready(function() {
	$("#schools a").hover(
		function () { // mouse enter
		    $("#map ." + $(this).attr("id")).addClass('hover');
		}, 
		function () { // mouse leave
			$("#map ." + $(this).attr("id")).removeClass('hover');
		}
	);
	
	$('#map a').hover(
		function () { // mouse enter
			// console.log($(this).attr("class"));
		    $("#schools #" + $(this).attr("class")).addClass('hover');
		}, 
		function () { // mouse leave
			$("#schools #" + $(this).attr("class")).removeClass('hover');
		}
	);
});

