window.addEvent('domready', function() {
	
//	var fx 			= new Fx.Elements( panes, { duration: 100 } );
	
	var panes 	= $$( "#secondaryProducts li" );
	var panes2	= $$( "#secondaryProducts .productContent li" );
	panes.each(function(element, i) {
 		element.setStyle( 'background', 'transparent url(/custom/csbiowa/image/category-listing-bg.png) no-repeat left top' );
		var fx = new Fx.Styles(element, {duration:250, wait:false});
		element.addEvent('mouseenter', function(){
 			element.setStyle( 'background', 'transparent url(/custom/csbiowa/image/category-listing-bg.png) no-repeat left -134px' );
			element.getElements('img').setStyle('border','2px solid #666666');
		});
		element.addEvent('mouseleave', function(){
			element.setStyle( 'background', 'transparent url(/custom/csbiowa/image/category-listing-bg.png) no-repeat left top' );
			element.getElements('img').setStyle('border','1px solid #cccccc');
		});
	});
	panes2.each(function(element2, i) {
 		element2.setStyle( 'background', 'transparent url(/custom/csbiowa/image/ie-list-bullet.png) no-repeat left 4px' );
		var fx = new Fx.Styles(element2, {duration:250, wait:false});
		element2.addEvent('mouseenter', function(){
 			element2.setStyle( 'background', 'transparent url(/custom/csbiowa/image/ie-list-bullet.png) no-repeat left 4px' );
		});
		element2.addEvent('mouseleave', function(){
			element2.setStyle( 'background', 'transparent url(/custom/csbiowa/image/ie-list-bullet.png) no-repeat left 4px' );
		});
	});	
});