document.observe("dom:loaded", function() {
	$("navi").select(".naviItem").each(function(naviItem) {
		var subnaviItem = naviItem.select(".subnavi").first();
		
		naviItem.observe("mouseover", function() {
			this.addClassName("hover");
			
			if(subnaviItem)
				subnaviItem.show();
		});
		
		naviItem.observe("mouseout", function() {
			this.removeClassName("hover");
			
			if(subnaviItem)
				subnaviItem.hide();
		});
	});
	
	$$("#naviHead .loginLogout").each(function(loginLogout) {
		new Platform.Login.LoginLogoutHandler({
			element: loginLogout
		});	
	});
});
