$(document).ready(function() {
	// set same height on all boxes in products listing
/*	var nameHeight = 0;
	var imgHeight = 0;
	var titleHeight = 0;
	$("#products").children('div').each(function(i, div) {
		nameHeight = 0;
		titleHeight = 0;
		$(this).children(".box_itempage").each(function() {
			if ($(this).children(".box_h").children('div.perexDiv').height() > nameHeight) {
				nameHeight = $(this).children(".box_h").children('div.perexDiv').height();
			}
			if ($(this).children(".box_h").children('div.imageLink').height() > imgHeight) {
				imgHeight = $(this).children(".box_h").children('div.imageLink').height();
			}
			if ($(this).children(".box_h").children('div.textLink').height() > titleHeight) {
				titleHeight = $(this).children(".box_h").children('div.textLink').height();
			}
		});
		$(this).children(".box_itempage").children(".box_h").children('div.imageLink').height(imgHeight);
		$(this).children(".box_itempage").children(".box_h").children('div.textLink').height(titleHeight);
		$(this).children(".box_itempage").children(".box_h").children('div.perexDiv').height(nameHeight);
	});
*/	
});

