$(function() {
	
	$("ul.menu li.flyout").hover(function() {
		var $this = $(this);
		$this.children("ul").css({
			"position": "absolute",
			"top": $this.offset().top + "px",
			"left": ($this.offset().left + $this.width()) + "px"
		}).show();
		$this.children("a").addClass("selected");
		
		if ($.browser.msie && parseInt($.browser.version) == 6) {
			//$this.children("ul").css("background-color","#ccc");
			$this.height(28).css("overflow","visible");
			//$this.data("menu", $this.children("ul"));
			//$this.children("ul").appendTo("body");
		}
		
	}, function() {
		var $this = $(this);
		if ($.browser.msie && parseInt($.browser.version) == 6) {
			//$this.data("menu").appendTo($this);
		}
		$this.children("ul").hide();
		$this.children("a").removeClass("selected");
	});
	
	if ($.browser.msie && parseInt($.browser.version) == 6) {
		$("ul.menu li.flyout > a.flyout").css({
			"background-position":"100% 0"
		});
	}
	
});

