// Java Document

 //<![CDATA[
 
 // Begin Javascript
var gmarkers = [];
var htmls = [];
function myclick(i) {
gmarkers[i].openInfoWindowHtml(htmls[i]);
}
    function onLoad() {
      // Map Overlays
      //
      
	  // This function picks up the click and opens the corresponding info window
// Creates one a small marker at the given point
function createMarker(point, attributeHTMLString, name) {
  var marker = new GMarker(point, icon);
  map.addOverlay(marker);
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(attributeHTMLString);
  });
  // save the info we need to use later for the sidebar
  gmarkers[i] = marker;
  htmls[i] = attributeHTMLString;
  // add a line to the sidebar html
  sidebar_html += '<a href="javascript:myclick(' + i + ')">' + name + '</a><br>';
        i++;
        return marker;
}



      // Create small marker icon
var icon = new GIcon();
icon.image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
icon.iconSize = new GSize(12, 20);
icon.shadowSize = new GSize(22, 20);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(5, 1);

<!--    begin pulling data    -->
	
		 
		 // Paris
	var point = new GPoint(2.328128, 48.867794);
	createMarker(point,"<div id=bubble><a href='http://www.sacred-destinations.com/france/paris-da-vinci-code-map.htm'><img style='border-color:#666666' border='1' hspace='5' align='left' src='http://www.sacred-destinations.com/sacred-sites/images/da-vinci-movie/mona-lisa-75.jpg'><b>Paris</b></a><br><br>All the action starts here, where Robert Langdon wakes up in the Ritz to the shocking news that the curator of the Louvre has been murdered in mysterious circumstances. Follow the action and investigate the sites using our interactive map.</div>","Paris");
		 	 
		  // Chateau Villette
	var point = new GPoint(3.295898, 47.331377);
	createMarker(point,"<div id=bubble><a href='http://www.sacred-destinations.com/france/chateau-de-villette.htm'><img style='border-color:#666666' border='1' hspace='5' align='left' src='http://www.sacred-destinations.com/france/images/chateau-aerial-offic-75.jpg'><b>Chateau Villette</b></a><br><br>After losing the police in Paris, Robert and Sophia flee to this stately 17th-century home of Sir Leigh Teabing. Tours and overnight night stays are possible, but not cheap! If you can afford it, this would make the ideal base for a Da Vinci Code tour of Paris.</div>","Chateau Villette");
	
		 	
	
		 // London
	var point = new GPoint(-0.118, 51.517);
	createMarker(point,"<div id=bubble><a href='http://www.sacred-destinations.com/england/london-da-vinci-code-map.htm'><img style='border-color:#666666' border='1' hspace='5' align='left' src='http://www.sacred-destinations.com/england/temple-church-photos/WebPhotosProFiles/custom/eos-166.jpg'><b>London</b></a><br><br>The quest for the Grail secret leads from Paris to London, where Langdon and Sophie explore the Temple Church and Westminster Abbey while Silas shacks up at the Opus Dei London Centre. </div>","London");
		 
		
	
		 
		 // Rosslyn Chapel
	var point = new GPoint(-3.167582, 55.858984);
	createMarker(point,"<div id=bubble><a href='http://www.sacred-destinations.com/scotland/rossyln-chapel.htm'><img style='border-color:#666666' border='1' hspace='5' align='left' src='http://www.sacred-destinations.com/sacred-sites/images/da-vinci-movie/rosslyn-chapel-pillar-nc-lodge-75.jpg'><b>Rosslyn Chapel</b></a><br><br>For years the focus of esoteric religious groups and Grail conspiracy theories, Rosslyn Chapel is filled with mysterious symbols and codes carved in stone. Learn more about the chapel's history, unique features and esoteric connections by clicking the link above.</div>","Rosslyn Chapel");
	
	
	
		 	 
		 // Vatican
	var point = new GPoint(12.457123, 41.902277);
	createMarker(point,"<div id=bubble><a href='http://www.sacred-destinations.com/italy/rome.htm'><img style='border-color:#666666' border='1' hspace='5' align='left' src='http://www.sacred-destinations.com/italy/images/thumbnails50/st-peters-c-qtl.jpg'><b>Vatican City</b></a><br><br>As the central characters chase clues in Paris and London, Rome and Vatican City are the scene for some nefarious doings of Bishop Manuel Aringarosa, head of Opus Dei.</div>","Rome, Italy");
		 
	
	
	
	// Create small marker icon
var icon = new GIcon();
icon.image = "http://labs.google.com/ridefinder/images/mm_20_white.png";
icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
icon.iconSize = new GSize(12, 20);
icon.shadowSize = new GSize(22, 20);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(5, 1);


		
	
	 // put the assembled sidebar_html contents into the sidebar div
    document.getElementById("sidebar").innerHTML = sidebar_html;
    }

	//]]>