```javascript
rect.click(function() {
-
this.fill({ color: '#f06' });
-
});
```
```javascript
SVG.extend(SVG.Shape, {
-
paintRed: function() {
return this.fill({ color: 'red' });
}
-
});
```
```javascript
SVG.extend(SVG.Ellipse, {
-
paintRed: function() {
return this.fill({ color: 'orangered' });
}
-
});
```
```javascript
SVG.extend(SVG.Doc, {
-
paintAllPink: function() {
var children = this.children();
return this;
}
-
});
```