$(document).ready (function () {
	// top menu / sub element / remove last separator
	$('#lTopMenu A.head').each (function () {
		$(this).next ().find ("LI:last").addClass ("last");
	});
	
	// top menu
	var topActive = $('#lTopMenu A.head.hit');
	$('#lTopMenu A.head').parent ().hover (
		function () {
			topActive.removeClass ('hit');
			$(this).find ("A.head").addClass ("hit");
		},
		function () {
			topActive.addClass ('hit');
			$(this).find ("A.head").removeClass ("hit");
		}
	);
});
