$(document).ready(function(){	
	var id = window.location.hash;
	
	$(id).css({ backgroundColor: "#ffffff" })
		 .animate({ backgroundColor: "#ffff99" }, 1000)
		 .animate({ backgroundColor: "#ffffff" }, 5000);
	
}); // end document.ready()