$(window).load(function() {
	// MENU TRANSFORM
	$("#submenu ul li").each(function() {
		link = $(this).html();
		$(this).html("<table cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"L<%=world%>\">"+link+"</td><td class=\"R\"></td></tr></table>");						
	});
	$("#submenu ul").show();
	
	// MENU POSITION
	menuW = 0;
	$("#submenu ul li").each(function() {
		mr = parseInt(($(this).css("margin-right")).replace("px",""));
		menuW += $(this).width()+mr;
	});
	v = ((940 - menuW)/2);
	$("#submenu ul").css("left",v+"px");
	
	// MENU HOVER
	var s;
	$("#submenu li").hover(function() {
		s=0;
		if($(this).hasClass("current")) s=1;
		if(s==0) {
			$(this).addClass("current");
		}
		
	},function() {
		if(s==0) $(this).removeClass("current");
	});	
});	
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

