$(function() {
	if (document.all&&document.getElementById) {
		$("#navtop > li").mouseover(function () {
			$(this).addClass("over");
		});
		$("#navtop > li").mouseout(function () {
			$(this).removeClass("over");
		});
	}
	else {
		$("#navtop li li").mouseover(function () {
			$(this.parentNode).addClass("redraw");
		});
		$("#navtop li li").mouseout(function () {
			$(this.parentNode).removeClass("redraw");
		});
	}
});
