window.addEvent('load',
    function()
    {
        /**
        * Rendo tutti i box prodotti identici in altezza
        */
        $$('.prodList').setStyle('height', 'auto');
        var heights = new Array();
        var getmin = '';
        $$('.prodList').each(
            function(el, i)
            {
                heights[i] = el.getSize().y;
            }
        );

        var getmax = Math.max.apply(Math, heights);
        $$('.prodList').setStyle('height', getmax - 40);
    }
);
