jQuery.brandTableFunc = function(){
	jQuery('table.brandTable > tbody > tr > td > div').each(function(){
		if(jQuery(this).height() < 134){
			jQuery(this).css('overflow','hidden');
		}else{
			jQuery(this).height(134);
		}
	});
}

jQuery(document).ready(function(){
  jQuery.brandTableFunc();

});