/* JS Include for productlist templates using the compact setting - Author: Sem - Date: 15-01-2011 */

/******************************************************
 *
 *  SET POSITION AND HEIGHT OF THE PRODUCT BLOCKS
 *
 ******************************************************/
$(window).load(function() {

	/* Sets correct height (height of the highest product in that row) for each product per row */
	$('.myshp_list_row').equalHeights();

	/* Fix the order buttons to the bottom of the product block */
	$('.myshp_list_product_order_section').addClass('myshp_list_product_bottom_fix');

});

$(document).ready(function() {
	var MAX_HEIGHT = 40;
	if($('.myshp_list_spacer').height()>MAX_HEIGHT)$('.myshp_list_spacer').css('height', MAX_HEIGHT+'px');
});
