function mouseOut() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Uebersicht-imagemaps.gif" } function mouseOverN() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_N.gif" } function mouseOverNB() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_NB.gif" } function mouseOverNH() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_NH.gif" } function mouseOverON() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_ON.gif" } function mouseOverOM() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_OM.gif" } function mouseOverOS() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_OS.gif" } function mouseOverR() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_R.gif" } function mouseOverWR() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_WR.gif" } function mouseOverWL() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_WL.gif" } function mouseOverMN() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_MN.gif" } function mouseOverMS() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_MS.gif" } function mouseOverBN() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_BN.gif" } function mouseOverBO() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_BO.gif" } function mouseOverSW() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_SW.gif" } function mouseOverSM() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_SM.gif" } function mouseOverBS() { document.getElementById("hauptkarte").src="/cps/rde/xbcr/SID-77C1A766-61579A02/lions-club/IMAGES/Karte_Highlight_BS.gif" } var dsimages=new Array() function preloadimages(){ for (i=0;i list hide/show var dHover = new Class({ implements:[Options], options:{ areaAttr:'rel', listAttr:'title' }, locked:false, areas:[], lists:[], initialize:function(options){ this.setAreas(); if(this.areas.length == 0){return;} $$('.replace_lists').setStyle('display', 'none'); $$(this.lists).setStyle('display', 'none'); this.setAreaEvents(); }, setAreas:function(options){ this.areas = document.getElements('.map_replace_lists area').filter(function(el){ var attr = el.get(this.options.areaAttr); if(!attr){return false;} var ul = document.getElements('.replace_lists ul').filter(function(ul){return ul.get(this.options.listAttr) === el.get(this.options.areaAttr);}.bind(this)); if(!ul){return false;} el.store('linked-list', ul); this.lists.push(ul); return true; }.bind(this)); }, setAreaEvents:function(options){ this.areas.addEvents({ mouseenter: function(ev){ $$('.replace_lists').setStyle('display', 'block'); if(this.locked){ return; } var el = $(ev.target); $$(this.lists).setStyle('display', 'none'); el.retrieve('linked-list').setStyle('display', 'block'); }.bind(this), click: function(ev){ ev.stop(); var el = $(ev.target); if(this.locked && this.locked == el){ this.locked = false; return; } this.locked = false; el.fireEvent('mouseenter', ev); this.locked = el; }.bind(this) }); } });