//var max_offset_x;

function rolloverInit() {
	$("[id^='nav-'] > div > div > ul > li").each(function(){
		$(this).hover(
			function(){
				if ($.browser.msie)
					this.className += " over";

				if ($(this).children("ul").offset()){
					var el_offset_x = $(this).children("ul").offset().left + $(this).children("ul").width();
					var max_offset_x = $("[id^='nav-']").offset().left + $("[id^='nav-']").width();
					if (el_offset_x > max_offset_x) {
						$(this).children("ul").css("left","-"+(el_offset_x - max_offset_x)+"px");
					}
				}
			},
			function(){
				if ($.browser.msie)
					this.className = this.className.replace(/ over/, "");
			}
		);
	});
}
$(document).ready(function(){
//	max_offset_x = $("#content-container").offset().left + $("#content-container").width();
	rolloverInit();
});
