$(function(){
	if (location.hash.length) {
		var entryId = "e" + location.hash.substr(1);
		var entry = document.getElementById(entryId);
		if (entry) {
			entry.scrollIntoView(true);
			$(entry).animate({"backgroundColor": "#F93"}, 350).animate({"backgroundColor": "#FFF"}, 350);
		}
	}
});
