var Pfizer = Pfizer || {};
Pfizer.GMap.InfoWindow = (function($, google) {
    'use strict';
    var isa = II.InfoWindow;

    var InfoWindow = function (options) {
        options = options || {};
        isa.apply(this, [options]);
        this.color = options.color;
    };

    InfoWindow.prototype = new isa();

    InfoWindow.prototype.draw = function () {
        isa.prototype.draw.apply(this, arguments);
        this.div.find('h1').css('background-color', this.color);
    };

    return InfoWindow;
})(jQuery, google);
