function initGeneral(){if($("#anatomyList").length){$("#anatomyList").delegate("li","mouseover",function(event){pointId=this.id.replace("_listItem","");$("#"+this.id).toggleClass("active");$("#"+pointId).css("backgroundImage","url(../img/map/point-hover.png)");$("#"+pointId+"_line").show()});$("#anatomyList").delegate("li","mouseout",function(event){pointId=this.id.replace("_listItem","");$("#"+this.id).toggleClass("active");$("#"+pointId).css("backgroundImage","none");$("#"+pointId+"_line").hide()});$("#anatomyList").delegate("li","click",function(event){pointId=this.id.replace("_listItem","");$("#anatomyList li").removeClass("activeAlways");$("#"+this.id).toggleClass("activeAlways");$("#"+pointId).css("backgroundImage","url(../img/map/point-hover.png)");$("#map dd").hide();$("#"+pointId+"_line").show();var version=1;if(version==1){$("#explicatie-"+pointId).show()}else{$("a#details_"+pointId).colorbox({transition:"fade",innerWidth:"900px",initialHeight:"800px"}).resize()}})}}jQuery(document).ready(initGeneral);
