var iconBlue=new GIcon();iconBlue.image="http://labs.google.com/ridefinder/images/mm_20_blue.png";iconBlue.shadow="http://labs.google.com/ridefinder/images/mm_20_shadow.png";iconBlue.iconSize=new GSize(12,20);iconBlue.shadowSize=new GSize(22,20);iconBlue.iconAnchor=new GPoint(6,20);iconBlue.infoWindowAnchor=new GPoint(5,1);var iconRed=new GIcon();iconRed.image="http://labs.google.com/ridefinder/images/mm_20_red.png";iconRed.shadow="http://labs.google.com/ridefinder/images/mm_20_shadow.png";iconRed.iconSize=new GSize(12,20);iconRed.shadowSize=new GSize(22,20);iconRed.iconAnchor=new GPoint(6,20);iconRed.infoWindowAnchor=new GPoint(5,1);var customIcons=[];customIcons.Mountain=iconBlue;function load(){if(GBrowserIsCompatible()){var B=new GMap2(document.getElementById("map_canvas"),{size:new GSize(527,440)});B.setMapType(G_PHYSICAL_MAP);B.setCenter(new GLatLng(5,0),1);B.addMapType(G_PHYSICAL_MAP);B.removeMapType(G_HYBRID_MAP);B.removeMapType(G_SATELLITE_MAP);B.removeMapType(G_NORMAL_MAP);var A=new GMapTypeControl();B.addControl(A);B.addControl(new GSmallMapControl());GDownloadUrl("xml_gen.php",function(V){var D=GXml.parse(V);var T=D.documentElement.getElementsByTagName("marker");for(var S=0;S<T.length;S++){var X=T[S].getAttribute("name");var Q=T[S].getAttribute("id");var C=T[S].getAttribute("type");var U=T[S].getAttribute("thumb");var R=new GLatLng(parseFloat(T[S].getAttribute("lat")),parseFloat(T[S].getAttribute("lng")));var P=T[S].getAttribute("height");var O=T[S].getAttribute("link1");var N=T[S].getAttribute("link2");var M=T[S].getAttribute("link3");var L=T[S].getAttribute("link4");var K=T[S].getAttribute("link5");var J=T[S].getAttribute("link6");var I=T[S].getAttribute("link7");var H=T[S].getAttribute("link8");var G=T[S].getAttribute("link9");var E=T[S].getAttribute("link10");var W=T[S].getAttribute("blurb");var F=createMarker(R,X,C,Q,U,O,N,M,L,K,J,I,H,G,E,W);B.addOverlay(F)}})}}function createMarker(O,R,A,N,P,M,L,K,I,H,G,F,E,C,B,Q){var D=new GMarker(O,customIcons[A]);if(A=="Mountain"){var J="<div class='bubble_single'><h3><a href='destination.php?destinations_id="+N+"'>"+R+"</a></h3><a href='destination.php?destinations_id="+N+"'><img src='http://www.phdesigns.co.uk/gearadviser/images/"+P+"' height='80px' width='130px' class='map_thumb' /></a></div>"}else{var J="<div class='bubble' class='clearfix'><div class='bubble_text'><h3>"+R+"</h3><p>"+M+"</p><p>"+L+"</p><p>"+K+"</p><p>"+I+"</p><p>"+H+"</p><p>"+G+"</p><p>"+F+"</p><p>"+E+"</p><p>"+C+"</p><p>"+B+"</p></div><div class='bubble_image'><img src='http://www.phdesigns.co.uk/gearadviser/images/"+P+"' height='80px' width='130px' class='map_thumb' /></div></div>"}GEvent.addListener(D,"click",function(){D.openInfoWindowHtml(J)});return D};