jQuery(document).ready(function(){
jQuery('.row').each(function(){
box_height = 0;
jQuery(this).find('.product-item .product-name').each(function(){
if (jQuery(this).height() > box_height){
box_height = jQuery(this).height();
}
})
jQuery(this).find('.product-item .product-name').css({'height':box_height+'px'})
})
jQuery('.row').each(function(){
box_height = 0;
jQuery(this).find('.product-item .product-img').each(function(){
if (jQuery(this).height() > box_height){
box_height = jQuery(this).height();
}
})
jQuery(this).find('.product-item .product-img').css({'height':box_height+'px'})
})

jQuery('.login .boxes-holder').each(function(){
box_height = 0;
jQuery(this).find('.info-box .box-lr').each(function(){
if (jQuery(this).height() > box_height){
box_height = jQuery(this).height();
}
})
jQuery(this).find('.info-box .box-lr').css({'height':box_height+'px'})
})
jQuery('.row').each(function(){
box_height = 0;
jQuery(this).find('.sub-category-img').each(function(){
if (jQuery(this).height() > box_height){
box_height = jQuery(this).height();
}
})
jQuery(this).find('.sub-category-img').css({'height':box_height+'px'})
})

jQuery('.row').each(function(){
box_height = 0;
jQuery(this).find('.product-heading').each(function(){
if (jQuery(this).height() > box_height){
box_height = jQuery(this).height();
}
})
jQuery(this).find('.product-heading').css({'height':box_height+'px'})
})
})
