$( function()
{
	var iMinHeight = 0;
	
	$( '#products li' ).each(function()
	{
		if( $( '#products li' ).height() > iMinHeight )
		{
			iMinHeight = $( '#products li' ).height();
		}
	});
	
	$( '#products li' ).css( 'height', iMinHeight );
});