// 
// -------------------------------------------------------------------------------
$(function(){
	var row = 4;
	var maxHeight=0;
	$(".specialprice h4").each(function(i){
		if(maxHeight<$(this).height()){
			maxHeight = $(this).height();
		}
		$(this).addClass("row");
		if(i%row==row-1){
			$(".specialprice h4.row").height(maxHeight).removeClass("row");
			maxHeight=0;
		}
	});
	$(".specialprice h4.row").height(maxHeight).removeClass("row");
});
