$(document).ready(function() {
	$("#levelthree ul li a").hover(
	  function () {
		$(this).css({ color:"black" });
	  }, 
	  function () {
		$(this).css({ color:"#475058" });
	  }
	);
	$("#thumb-two a").hover(
	  function () {
		$("#levelthree ul li a.hounslow1").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.hounslow1").css({ color:"#475058" });
	  }
	);
	$("#thumb-three a").hover(
	  function () {
		$("#levelthree ul li a.hounslow2").css({ color:"black" });
	  }, 
	  function () {
		$("#levelthree ul li a.hounslow2").css({ color:"#475058" });
	  }
	);
});