//<![CDATA[
	// Ensure that all product lists are the same height
	$(document).ready(function() {
		if(typeof(DesignMode) != 'undefined') {
			return;
		}
		var maxHeight = 0;
			$('.Content .ProductList li').each(function() {
				if($(this).height() > maxHeight) {
					maxHeight = $(this).height();
				}
		});
		$('.Content .ProductList li').css('height', maxHeight);
	});
	//]]>