


/* COPYRIGHT 2010 JEDRZEJ MAJKO; ALL RIGHTS RESERVED; USAGE WITHOUT AUTHOR'S APPROVAL STRICTLY PROHIBITED */


function InfoBox(b){google.maps.OverlayView.call(this);this.latlng_=b.latlng;this.map_=b.map;this.content_=b.content;this.offsetVertical_=-17;this.offsetHorizontal_=14;this.width_=215;var a=this;this.boundsChangedListener_=google.maps.event.addListener(this.map_,"bounds_changed",function(){return a.panMap.apply(a)});this.setMap(this.map_)}InfoBox.prototype=new google.maps.OverlayView();InfoBox.prototype.remove=function(){if(this.div_){this.div_.parentNode.removeChild(this.div_);this.div_=null}};InfoBox.prototype.draw=function(){this.createElement();if(!this.div_){return}var a=this.getProjection().fromLatLngToDivPixel(this.latlng_);if(!a){return}this.div_.style.width=this.width_+"px";this.div_.style.left=(a.x+this.offsetHorizontal_)+"px";this.div_.style.top=(a.y+this.offsetVertical_)+"px";this.div_.style.display="block";this.div_.style.zindex=10};InfoBox.prototype.close=function(){return this.setMap(null)};InfoBox.prototype.createElement=function(){var b=this.getPanes();var c=this.div_;if(!c){c=this.div_=document.createElement("div");c.setAttribute("class","mapBox");c.style.width=this.width_+"px";var a=document.createElement("div");a.setAttribute("class","mapBoxContent");a.innerHTML=this.content_;c.appendChild(a);c.style.display="none";b.floatPane.appendChild(c)}else{if(c.parentNode!=b.floatPane){c.parentNode.removeChild(c);b.floatPane.appendChild(c)}else{}}};InfoBox.prototype.panMap=function(){};$.fn.tourmap=function(j,r){var o=[[],[],[]];var g=[[],[],[]];var d=null;var k=false;for(i in j){var c=new google.maps.LatLng(j[i].loc[1],j[i].loc[0]);o[j[i].status-1].push(c);if(d==null){d=new google.maps.LatLngBounds(c,c)}else{d.extend(c)}g[j[i].status-1].push(i)}var b=new google.maps.Map(this[0],{mapTypeId:google.maps.MapTypeId.HYBRID,zoom:r,center:d.getCenter(),mapTypeControl:true,mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},navigationControl:true,navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL}});var q=["#646464","#646464","#ea4a0b"];var n=null;var h=[null,null,null];for(i in o){if(o[i].length>0){var s=o[i].slice(0);if(n){s.unshift(n)}h[i]=new google.maps.Polyline({path:s,strokeColor:q[i],strokeWeight:3});h[i].setMap(b);n=o[i][o[i].length-1]}}var l=[new google.maps.MarkerImage("/Images/marker.png",new google.maps.Size(25,25),new google.maps.Point(0,0),new google.maps.Point(12,12)),new google.maps.MarkerImage("/Images/marker-red.png",new google.maps.Size(25,25),new google.maps.Point(0,0),new google.maps.Point(12,12)),new google.maps.MarkerImage("/Images/marker-orange.png",new google.maps.Size(25,25),new google.maps.Point(0,0),new google.maps.Point(12,12))];for(e in o){for(i in o[e]){var f=new google.maps.InfoWindow({content:document.getElementById("test")});var m=function(){var p=j[g[e][i]].link;var u=j[g[e][i]].city;var a=new google.maps.Marker({position:o[e][i],map:b,icon:l[e],zIndex:100});var t=null;google.maps.event.addListener(a,"mouseover",function(w,v,x){if(!k){k=true}t=new InfoBox({latlng:a.getPosition(),map:b,content:u})});google.maps.event.addListener(a,"mouseout",function(w,v,x){t.close()});google.maps.event.addListener(a,"click",function(w,v,x){document.location=p})};m()}}};

