var UEL;
if (!UEL) {
	UEL = new class_UEL();
}
// ........................................................................:
$(function() {
	$("div.Signpost").each(function() {
		var $this = $(this);
		$this.hover(
		// over
		function() {
			$(this).addClass('Current');
		},
		// out
		function() {
			$(this).removeClass('Current');
		});
	});
});

// ........................................................................:
// @todo DELETE
UEL.class_Highlights = function() {
	$(document).ready(function() {
		$("ul.Highlights li").each(function() {
			var $this = $(this);
			$this.hover(
			// over
			function() {
				$(this).addClass('Current');
			},
			// out
			function() {
				$(this).removeClass('Current');
			});
		});
	});
};

// ........................................................................:
// @todo DELETE
if (!UEL.Highlights)
	UEL.Highlights = new UEL.class_Highlights();

