$(function() {
	$(".mainNav a").mouseover(function() {
		var sender = $(this);
		$(".mainNav a").removeClass("ahover");
		sender.addClass("ahover");
		$(".Navigation").hide();
		var panelId = "#Nav_" + $(".mainNav a").index($(this));
		$(panelId).show();
	});

	$(".mainNav a:first").mouseover();
});
//lucker
