$(document).ready(function() {
	$("#levelthree ul li a").hover(
	  function () {
		$(this).css({ color:"black" });
	  }, 
	  function () {
		$(this).css({ color:"#475058" });
	  }
	);
	$("#thumb-one a").hover(
	  function () {
		$("#levelthree ul li a.georgesq").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.georgesq").css({ color:"#475058" });
	  }
	);
	$("#thumb-two a").hover(
	  function () {
		$("#levelthree ul li a.dealpier").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.dealpier").css({ color:"#475058" });
	  }
	);
	$("#thumb-three a").hover(
	  function () {
		$("#levelthree ul li a.kielder").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.kielder").css({ color:"#475058" });
	  }
	);
	$("#thumb-five a").hover(
	  function () {
		$("#levelthree ul li a.seacroft").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.seacroft").css({ color:"#475058" });
	  }
	);
	$("#thumb-six a").hover(
	  function () {
		$("#levelthree ul li a.berkeley").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.berkeley").css({ color:"#475058" });
	  }
	);
});