<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl"
          xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="imgButton">
<handlers>
	<handler event="mouseover">
		if (!this.disabled)
		this.src = this.src.replace(/(\.\w+)$/, "-ov$1");	
	</handler>
	<handler event="mouseout">
		if (!this.disabled)
		this.src = this.src.replace(/-ov(\.\w+)$/i, "$1");
	</handler>
</handlers>
</binding>
</bindings>
