function initIEHov()
{
	$(".mosnav").hover(
		function () {
			$(this).addClass('hover');
		},
		function () {
			$(this).removeClass('hover');
		}
	);
}
if (document.all && !window.opera) attachEvent("onload", initIEHov);