window.addEvent('domready', function() {


	$("ROI_smallImage").addEvent("mouseenter", function() {
    	$("ROI_smallImage").setProperty("src", "/custom/firstbankclewiston/image/reduce-text-hover.png"); 
	});

	$("ROI_smallImage").addEvent("mouseleave", function() {
		$("ROI_smallImage").setProperty("src", "/custom/firstbankclewiston/image/reduce-text.png"); 
	});
 	
 	$("ROI_bigImage").addEvent("mouseenter", function() {
		$("ROI_bigImage").setProperty("src", "/custom/firstbankclewiston/image/enlarge-text-hover.png"); 
	});
	
	$("ROI_bigImage").addEvent("mouseleave", function() {
		$("ROI_bigImage").setProperty("src", "/custom/firstbankclewiston/image/enlarge-text.png"); 
	});
	
	$$("#shareButton img").addEvent("mouseenter", function() {
		$$("#shareButton img").setProperty("src", "/custom/firstbankclewiston/image/share-hover.png"); 
	});
	
	$$("#shareButton img").addEvent("mouseleave", function() {
		$$("#shareButton img").setProperty("src", "/custom/firstbankclewiston/image/share.png"); 
	});
	
	$$("#printButton img").addEvent("mouseenter", function() {
		$$("#printButton img").setProperty("src", "/custom/firstbankclewiston/image/print-hover.png"); 
	});
	
	$$("#printButton img").addEvent("mouseleave", function() {
		$$("#printButton img").setProperty("src", "/custom/firstbankclewiston/image/print.png"); 
	});
	
});





