$(function() {
	if ($.browser.msie && $.browser.version == '6.0') {
		$('#top-menu ul li').each(function() {
			$(this).mouseover(function() {
				$(this).addClass('hover');
				if ($(this).hasClass('first')) {
					$(this).addClass('firsthover');
				}
				if ($(this).hasClass('last')) {
					$(this).addClass('lasthover');
				}
			}).mouseout(function() {
				$(this).removeClass('hover').removeClass('firsthover').removeClass('lasthover');
			});
		});
	}
});

