$("#main-menu > ul > li").hover(
function () {
		var ul = $(this).children("ul");
		var p = $(this).position().left-1;
		if (!$.browser.msie) {p = $(document).width() - (p + $(this).width())-1;}
		ul.css('right', p+'px');
		ul.css('top', '432px');
		if ($.browser.mozilla) {ul.css('top', '434px');}
		//ul.css('display', 'inline');
		ul.show(0);
		ul.css('display', 'inline');
		$(this).children('a').addClass('a1sel');
	}, function () {
		//$(this).children('ul').css('display', 'none');
		$(this).children('ul').hide(0);
		$(this).children('a').removeClass('a1sel');
	}
);
