function setIE()
{
	$('#menu > li').mouseover(function(){
		$(this).children('ul').css('left', $(this).offset()['left']);
		$(this).children('ul').css('top', $(this).offset()['top'] + 38);
		if ($(this).hasClass('first'))
		{
			$(this).children('ul').css('left', $(this).offset()['left'] + 17);
		}
		else if ($.browser.version < 7 && $(this).hasClass('last'))
		{
			$(this).children('ul').css('left', 0);
			$(this).children('ul').css('top', 38);
		}
		
		if ($.browser.version < 7)
		{
			$(this).addClass('active');
			$(this).children('ul').show();
		}
		else
		{
			$(this).children('ul').css('top', parseInt($(this).children('ul').css('top'))-4);
		}
	});

	$('#menu > li').mouseout(function(){
		if ($.browser.version < 7)
		{
			$(this).children('ul').hide();
			$(this).removeClass('active');
		}
	});
}