window.addEvent("domready",function(){
	$$("div.punkt,a.subpunkt").each(function(d){
		var t=d.getProperty("title");
		if (t) {
			if (location.href.contains(t)) {d.setStyles({backgroundColor:'#FFF',color:'#000',cursor:'default'});return}
		}
		d.addEvents({
			"mouseover":function(){
				$(this).setStyles({color:'#fff',backgroundColor:'#00ACBB'});
				var pp=$(this).getChildren("div.list_punkts2");
				if (pp.length>0) {
					pp[0].setStyle('display','block').addEvent("mouseout",function(){$(this).setStyle('display','none')});
				}
			},
			"mouseout":function(){
				$(this).setStyles({backgroundColor:'#111C1C',color:'#fff'})
				var pp=$(this).getChildren("div.list_punkts2");
				if (pp.length>0) {
					pp[0].setStyle('display','none').removeEvent("mouseout");
				}
			},
			"click":function(){
				$(this).fireEvent('mouseout');
				if ($(this).getProperty("title")) location.replace($(this).getProperty("title"));
			}
		});
	});
});
