﻿
/*_____________________________________________________________________________
Class: CBHIconLibrary


var CBHIconLibrary = Class.create({
	initialize: function()
	{
		this.communityIcon = new GIcon();
		this.communityIcon.image = '/assets/images/map/standard-community.png';
		this.communityIcon.shadow = '/assets/images/map/standard-community-shadow.png';
		this.communityIcon.iconSize = new GSize(25.0, 25.0);
		this.communityIcon.shadowSize = new GSize(38.0, 25.0);
		this.communityIcon.iconAnchor = new GPoint(12.0, 12.0);
		this.communityIcon.infoWindowAnchor = new GPoint(12.0, 12.0);		
	
		this.squareONEIcon = new GIcon();
		this.squareONEIcon.image = '/assets/images/map/square-one.png';
		this.squareONEIcon.shadow = '/assets/images/map/square-one-shadow.png';
		this.squareONEIcon.iconSize = new GSize(36.0, 36.0);
		this.squareONEIcon.shadowSize = new GSize(55.0, 36.0);
		this.squareONEIcon.iconAnchor = new GPoint(18.0, 18.0);
		this.squareONEIcon.infoWindowAnchor = new GPoint(18.0, 18.0);
		
	}
var iconLib = new CBHIconLibrary();
});*/

var CBHIcons = {
	'communityIcon' : new GIcon(),
	'squareONEIcone' : new GIcon(),
	'homeIcon' : new GIcon()
};
CBHIcons.communityIcon.image = '/assets/images/map/standard-community.png';
CBHIcons.communityIcon.shadow = '/assets/images/map/standard-community-shadow.png';
CBHIcons.communityIcon.iconSize = new GSize(25.0, 25.0);
CBHIcons.communityIcon.shadowSize = new GSize(38.0, 25.0);
CBHIcons.communityIcon.iconAnchor = new GPoint(12.0, 12.0);
CBHIcons.communityIcon.infoWindowAnchor = new GPoint(12.0, 12.0);		

CBHIcons.squareONEIcon = new GIcon();
CBHIcons.squareONEIcon.image = '/assets/images/map/square-one.png';
CBHIcons.squareONEIcon.shadow = '/assets/images/map/square-one-shadow.png';
CBHIcons.squareONEIcon.iconSize = new GSize(36.0, 36.0);
CBHIcons.squareONEIcon.shadowSize = new GSize(55.0, 36.0);
CBHIcons.squareONEIcon.iconAnchor = new GPoint(18.0, 18.0);
CBHIcons.squareONEIcon.infoWindowAnchor = new GPoint(18.0, 18.0);

CBHIcons.homeIcon.image = '/assets/images/map/marker_home.png';
CBHIcons.homeIcon.shadow = '/assets/images/map/marker_home_shadow.png';
CBHIcons.homeIcon.iconSize = new GSize(20.0, 30.0);
CBHIcons.homeIcon.shadowSize = new GSize(36.0, 30.0);
CBHIcons.homeIcon.iconAnchor = new GPoint(10.0, 15.0);
CBHIcons.homeIcon.infoWindowAnchor = new GPoint(10.0, 15.0);
