﻿function setupIcons() {
    arrGIcons[0] = new GIcon();
        
    arrGIcons[0].image 		        = SITEROOT + "/images/icons/pin-red.png";
	arrGIcons[0].iconSize 		    = new GSize(33, 47);
	arrGIcons[0].iconAnchor 	    = new GPoint(1, 47);
	
	arrGIcons[0].shadow             = SITEROOT + "/images/icons/pin-shadow.png";
	arrGIcons[0].shadowSize         = new GSize(37, 33);
	arrGIcons[0].infoWindowAnchor   = new GPoint(14, 1);
	
	arrGIcons[1] = new GIcon();
    
    arrGIcons[1].image 		        = SITEROOT + "/images/icons/pin-blue.png";
	arrGIcons[1].iconSize 		    = new GSize(33, 47);
	arrGIcons[1].iconAnchor 	    = new GPoint(1, 47);
	
	arrGIcons[1].shadow             = SITEROOT + "/images/icons/pin-shadow.png";
	arrGIcons[1].shadowSize         = new GSize(37, 33);
	arrGIcons[1].infoWindowAnchor   = new GPoint(14, 1);
	
	arrGIcons[2] = new GIcon();
    
    arrGIcons[2].image 		        = SITEROOT + "/images/icons/pin-gray.png";
	arrGIcons[2].iconSize 		    = new GSize(33, 47);
	arrGIcons[2].iconAnchor 	    = new GPoint(1, 47);
	
	arrGIcons[2].shadow             = SITEROOT + "/images/icons/pin-shadow.png";
	arrGIcons[2].shadowSize         = new GSize(37, 33);
	arrGIcons[2].infoWindowAnchor   = new GPoint(14, 1);
	
	arrGIcons[3] = new GIcon();
    arrGIcons[3].image 		        = SITEROOT + "/images/icons/pin-selected-red.png";
	
	arrGIcons[4] = new GIcon();
    arrGIcons[4].image 		        = SITEROOT + "/images/icons/pin-selected-blue.png";
	
	arrGIcons[5] = new GIcon();
    arrGIcons[5].image 		        = SITEROOT + "/images/icons/pin-selected-gray.png";

}