buttons = function() {

	try {



		var buttons = document.getElementById("widgetSearch").getElementsByTagName("button");
		for (var i=0; i<buttons.length; i++) {
			buttons[i].onmouseover=function() {
				this.style.backgroundImage='url(/_lib/img/arrow_org.png)';
			}
			buttons[i].onmouseout=function() {
				this.style.backgroundImage='url(/_lib/img/arrow_brn.png)';
			}
		}
		
		var wdg = document.getElementById("widgetEnews");
		if (wdg.getElementsByTagName) var buttons = wdg.getElementsByTagName("button");
		for (var i=0; i<buttons.length; i++) {
			buttons[i].onmouseover=function() {
				this.style.backgroundImage='url(/_lib/img/arrow_org.png)';
			}
			buttons[i].onmouseout=function() {
				this.style.backgroundImage='url(/_lib/img/arrow_brn.png)';
			}
		}
	} catch( e ) { };
}
if (window.attachEvent) window.attachEvent("onload", buttons);