/*
(function($) {
$(document).ready(function(){

	// if ($(':input').length != 0) {
	var col2name = '';
	if ($('#BasketForm').length) {
		col2name = '#BasketForm';
		offset = 44;
	} else {
		if ($('#tx-ttproducts-pi1-list').length) {
			col2name = '#tx-ttproducts-pi1-list';
			offset = 45;
		} else {
			
		}
	}


	var navigationHeight = $("#menu3-4").height();
	var contentHeight = $(col2name).height();
	if (navigationHeight != contentHeight) {
		if (navigationHeight > contentHeight) {
			$(col2name).css({
				"height": navigationHeight+offset
			});
		} else {
			$("#menu3-4").css({
				"height": contentHeight-offset
			});
		}			
	}
	
});
})(jQuery);
*/