// JavaScript Document
/*********Category Feature Init*****************/
Event.observe(window, 'load', function(e){
	var products = $$('#products li');
	var height = 0;
	products.each(function(myItem){
		
		myItem.observe('mouseover', function(e){
			myItem.addClassName('featureOver')
		});
		myItem.observe('mouseout', function(e){
			myItem.removeClassName('featureOver');
		});
		
		if(height < myItem.offsetHeight){
		
			height = myItem.down(1).offsetHeight;	
		}
						   
	});
	
	products.each(function(myItem){
						   
		myItem.down(1).style.height = height + 'px';			   
	});
});

