window.addEvent('domready', function() {
	
var panes 	= $$( "li.clickableContainer" );

	panes.each(function(element, i) {
		var href = element.getElements('.productContent h4 a');
		href.setStyle( 'background', 'transparent url(/custom/firstbankclewiston/image/cate-learn-more.png) no-repeat scroll 0 0' );
		element.setStyle( 'background', 'transparent url(/custom/firstbankclewiston/image/cate-li-bg.png) no-repeat scroll 0 0' );
		var fx = new Fx.Styles(element, {duration:300, wait:false});
		
		element.addEvent('mouseenter', function(){
			href.setStyle( 'background', 'url(/custom/firstbankclewiston/image/cate-learn-more.png) no-repeat 0 -54px' );
			element.setStyle( 'background', 'transparent url(/custom/firstbankclewiston/image/cate-li-bg.png) no-repeat scroll 0 -83px' );		
		});
		
		element.addEvent('mouseleave', function(){
			href.setStyle( 'background', 'transparent url(/custom/firstbankclewiston/image/cate-learn-more.png) no-repeat scroll 0 0' );
			element.setStyle( 'background', 'transparent url(/custom/firstbankclewiston/image/cate-li-bg.png) no-repeat scroll 0 0' );			
		});
	});
});