//Written by Alec Scaresbrook 2008
//www.scaresbrooks.co.uk
//This is coding to set up all the variables to display markers on a Google map of the Congleton Cycle Network.
//This file runs in conjunction with congleton_routes.js and the image files in the 'markers' folder.

//EDIT the 'mydomain.co.uk' part of this line
     var mydomain = "http://www.conceptionuk.org/images/markers/";
		 
//Set up all the markers
     var icon70 = new GIcon();
     icon70.image = mydomain + "marker2_70.png";
     icon70.iconSize = new GSize(15, 15);
     icon70.shadowSize = new GSize(15, 15);
     icon70.iconAnchor = new GPoint(7, 7);
     icon70.infoWindowAnchor = new GPoint(5, 1)
     icon70.transparent = mydomain + "marker2_70tran.png";
     icon70.printImage = mydomain + "marker2_70ie.gif";
     icon70.mozPrintImage = mydomain + "marker2_70ff.gif";

     var icon73 = new GIcon();
     icon73.image = mydomain + "marker2_73.png";
     icon73.iconSize = new GSize(15, 15);
     icon73.shadowSize = new GSize(15, 15);
     icon73.iconAnchor = new GPoint(7, 7);
     icon73.infoWindowAnchor = new GPoint(5, 1)
     icon73.transparent = mydomain + "marker2_73tran.png";
     icon73.printImage = mydomain + "marker2_73ie.gif";
     icon73.mozPrintImage = mydomain + "marker2_73ff.gif";

    var icon55 = new GIcon();
     icon55.image = mydomain + "marker2_55.png";
     icon55.iconSize = new GSize(15, 15);
     icon55.shadowSize = new GSize(15, 15);
     icon55.iconAnchor = new GPoint(7, 7);
     icon55.infoWindowAnchor = new GPoint(5, 1)
     icon55.transparent = mydomain + "marker2_55tran.png";
     icon55.printImage = mydomain + "marker2_55ie.gif";
     icon55.mozPrintImage = mydomain + "marker2_55ff.gif";

    var iconthink = new GIcon();
     iconthink.image = mydomain + "think.png";
     iconthink.iconSize = new GSize(16, 28);
     iconthink.shadowSize = new GSize(40, 28);
     iconthink.iconAnchor = new GPoint(6, 20);
     iconthink.infoWindowAnchor = new GPoint(5, 1);
     iconthink.transparent = mydomain + "thinktran.png";
     iconthink.printImage = mydomain + "thinkie.gif";
     iconthink.mozPrintImage = mydomain + "thinkff.gif";

      //~ Create 'orange' marker icon
     var iconorange = new GIcon();
     iconorange.image = mydomain + "orange.png";
     iconorange.shadow = mydomain + "pin_shadow.png";
     iconorange.iconSize = new GSize(16, 28);
     iconorange.shadowSize = new GSize(40, 28);
     iconorange.iconAnchor = new GPoint(6, 20);
     iconorange.infoWindowAnchor = new GPoint(5, 1);
     iconorange.transparent = mydomain + "orangetran.png";
     iconorange.printImage = mydomain + "orangeie.gif";
     iconorange.mozPrintImage = mydomain + "orangeff.gif";

     //~ Create 'blue' marker icon
     var iconblue = new GIcon();
     iconblue.image = mydomain + "blue.png";
     iconblue.shadow = mydomain + "pin_shadow.png";
     iconblue.iconSize = new GSize(16, 28);
     iconblue.shadowSize = new GSize(40, 28);
     iconblue.iconAnchor = new GPoint(6, 20);
     iconblue.infoWindowAnchor = new GPoint(5, 1);
     iconblue.transparent = mydomain + "bluetran.png";
     iconblue.printImage = mydomain + "blueie.gif";
     iconblue.mozPrintImage = mydomain + "http://www.mydomain.co.uk/markers/blueff.gif";

     //~ Create 'yellow' marker icon
     var iconyellow = new GIcon();
     iconyellow.image = mydomain + "yellow.png";
     iconyellow.shadow = mydomain + "pin_shadow.png";
     iconyellow.iconSize = new GSize(16, 28);
     iconyellow.shadowSize = new GSize(40, 28);
     iconyellow.iconAnchor = new GPoint(6, 20);
     iconyellow.infoWindowAnchor = new GPoint(5, 1);
     iconyellow.transparent = mydomain + "yellowtran.png";
     iconyellow.printImage = mydomain + "yellowie.gif";
     iconyellow.mozPrintImage = mydomain + "yellowff.gif";

     //~ Create 'darkgreen' marker icon
     var icondarkgreen = new GIcon();
     icondarkgreen.image = mydomain + "darkgreen.png";
     icondarkgreen.shadow = mydomain + "pin_shadow.png";
     icondarkgreen.iconSize = new GSize(16, 28);
     icondarkgreen.shadowSize = new GSize(40, 28);
     icondarkgreen.iconAnchor = new GPoint(6, 20);
     icondarkgreen.infoWindowAnchor = new GPoint(5, 1);
     icondarkgreen.transparent = mydomain + "darkgreentran.png";
     icondarkgreen.printImage = mydomain + "darkgreenie.gif";
     icondarkgreen.mozPrintImage = mydomain + "darkgreenff.gif";

     //~ Create 'red' marker icon
     var iconred = new GIcon();
     iconred.image = mydomain + "red.png";
     iconred.shadow = mydomain + "pin_shadow.png";
     iconred.iconSize = new GSize(16, 28);
     iconred.shadowSize = new GSize(40, 28);
     iconred.iconAnchor = new GPoint(6, 20);
     iconred.infoWindowAnchor = new GPoint(5, 1);
     iconred.transparent = mydomain + "redtran.png";
     iconred.printImage = mydomain + "redie.gif";
     iconred.mozPrintImage = mydomain + "redff.gif";

     //~ Create 'help' marker icon
     var iconhelp = new GIcon();
     iconhelp.image = mydomain + "help.png";
     iconhelp.shadow = mydomain + "sign_shadow.png";
     iconhelp.iconSize = new GSize(28, 28);
     iconhelp.shadowSize = new GSize(40, 28);
     iconhelp.iconAnchor = new GPoint(6, 20);
     iconhelp.infoWindowAnchor = new GPoint(5, 1);
     iconhelp.transparent = mydomain + "helptran.png";
     iconhelp.printImage = mydomain + "helpie.gif";
     iconhelp.mozPrintImage = mydomain + "helpff.gif";
