﻿function GoogleMapViewAllButton()
{
    this.initialize = function(map, hrefObject) {
        this.map = map;
        this.hrefObject = hrefObject;
    }


    this.show = function() {
        this.hrefObject.style.color = "#000";
    }

    this.hide = function() {
        this.hrefObject.style.color = "rgb(151,151,151)";
    }

    return this;        
}