// JS script for the mouse over in IE6
//
$(document).ready(function(){
	//add iehover class for the IE
	$("#nav-main ul li.first_level, .nav-main ul").mouseover(function() {
		$(this).addClass("iehover");
		}).mouseout(function() {
			$(this).removeClass("iehover");
		}
	);
	$("#nav-main ul li ul").mouseout (function () {
		$("#nav-main ul li.first_level").mouseout(function() {
			$(this).removeClass("iehover");
		});
	});

	$("#nav-main ul li:last-child").addClass("li_last");
	$("li.sheet").append("<div id='nav_sheet'></div>");
});
