/*
	Copyright Code Computerlove Ltd 2007-2009
	Build: 1.0.0.141
	Date: 02/11/2009 13:57:12
*/

(function($j) {

    Code.registerNamespace('Website.Pages');

    Website.Pages.ProductsList = {

        content: null,

        onReady: function() {
            var _self = this;
            $j('.js-quick-search-button').hide();
        }

    };

    $j().ready(function() {
    Website.Pages.ProductsList.onReady();
    
    //Set all column heights to that of the tallest .plinth
    equalHeight($(".plinth"));
    });

 



})(jQuery);

//6182 - All content blue boxes under the thumbnail images should be the same height
//Jquery function to workout the tallest column and apply the height to all.
function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if (thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
