jQuery(function(){
	var sh = 0;
	jQuery(".heightLine").each(function(){
		var h = this.offsetHeight;
		sh = (sh < h) ? h : sh;
		jQuery(this).css("height", sh + "px");
	})
})
