function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

$(document).ready(function() {
	equalHeight($("div.ProductTN_wrapper div.R0 div.ProductImg_wrapper"));						   
    equalHeight($("div.ProductTN_wrapper div.R1 div.ProductImg_wrapper"));
	equalHeight($("div.ProductTN_wrapper div.R2 div.ProductImg_wrapper"));
	equalHeight($("div.ProductTN_wrapper div.R3 div.ProductImg_wrapper"));
	equalHeight($("div.ProductTN_wrapper div.R4 div.ProductImg_wrapper"));
	equalHeight($("div.ProductTN_wrapper div.R5 div.ProductImg_wrapper"));
	
	//Home Page Featured Productys
	equalHeight($("div#FeatureProductWomen div.R1 div.ProductImg_wrapper"));
	equalHeight($("div#FeatureProductMen div.R1 div.ProductImg_wrapper"));
	equalHeight($("div#FeatureProductKids div.R1 div.ProductImg_wrapper"));	
	
});