// set height of product area's

function SetProductHeight(dit){							 
  var maximaHeight = 0;
  jQuery(dit).each(function(){
		nuHeight = jQuery(this).height();
		
		if(nuHeight > maximaHeight){
			maximaHeight = jQuery(this).height();
		}
	});
  
  jQuery(dit).each(function(){
		jQuery(this).height(maximaHeight);
	});
};


function setBAVisible(){
jQuery('.box_type1').each(function(){jQuery(this).css("visibility", "visible")});
};
