//	crea marker e popup

var miomarker = new GIcon(G_DEFAULT_ICON);

miomarker.shadow = null;
miomarker.image = "img/spillo.png";	//	marker trasparente
miomarker.iconSize = new GSize(26, 32);
miomarker.iconAnchor = new GPoint(6, 20);
          
marker13 = new GMarker( new GLatLng(-12.91,-116.12), miomarker);	//	coordinate del marker trasparente sulla mappa

GEvent.addListener(marker13, 'click', function(){ 
	marker13.openExtInfoWindow(
    	map,
		"box13",	//	contenuto del popup
		"<script type='text/javascript' src='js/shadowbox.js'></script>" +
		"<script type='text/javascript'>Shadowbox.init({overlayOpacity: 0.9});</script>" +
		"<div><strong>Client:</strong>&nbsp;&nbsp;<a class='linea' href='http://www.nextexit.it' target='_blank'>Next Exit Magazine</a><br />" +
		"<strong>Done at:&nbsp;&nbsp;</strong><a class='linea' href='http://www.sodastudio.it' target='_blank'>Soda studio</a><br />" +
		"<strong>What I did:&nbsp;&nbsp;</strong>illustration<br /><br />" +
		"<strong>Images:</strong>&nbsp;&nbsp;<a href='img/next.jpg' onclick='Shadowbox.open(this);return false;'>1</a></div>",
		{beakOffset: 1, noCloseOnClick:true}
	); 
});

map.addOverlay(marker13);
