/**************************************************************************************
*File: here.js
*Contents:
*All rights reserved.
**************************************************************************************/

var hereIcon = null;
var hereMarker = null;


createHereIcon();



function createHereIcon() {
   hereIcon = new GIcon();

   hereIcon.image = "marker_green.png";
   hereIcon.shadow = "shadow50.png";
   
   hereIcon.iconSize = new GSize(20, 34);
   hereIcon.shadowSize = new GSize(37, 34);
   hereIcon.iconAnchor = new GPoint(6, 20);
   hereIcon.infoWindowAnchor = new GPoint(5, 1);

}






