var oldFillInfoBubble = 
		Timeline.DefaultEventSource.Event.prototype.fillInfoBubble;
        Timeline.DefaultEventSource.Event.prototype.fillInfoBubble = 
			function(elmt, theme, labeller) {
            oldFillInfoBubble.call(this, elmt, theme, labeller);

            var eventObject = this;
			var div = document.createElement("div");
            div.innerHTML = "<br/><span><p><b>City:</b> " + this.getProperty("city") + "</p><p><b>Country:</b> " + this.getProperty("country") + "</p><p><b>Website:</b> "  + "<a href=" + this.getProperty("link") + " target=blank>" + this.getProperty("link") + "</a>" + "</p></span>";
            
            elmt.appendChild(div);
        }
