var UEL;
if (!UEL) UEL = {};
//........................................................................:initialise
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');
				}
			);
	});
	});
}

//........................................................................:initialise
if (!UEL.Highlights) UEL.Highlights = new UEL.class_Highlights();

