// JavaScript Document

$.fn.egaliseHeigth = function(){
	
	var maxHeight = 0;
	var maxHeight2 = 0;
	$(this).children('.block').each(function(){
		if( maxHeight < $(this).height()){
			maxHeight = $(this).height()
		}							 
											 
	})
		$(this).children('.block').find('h3').each(function(){
		if( maxHeight2 < $(this).height()){
			maxHeight2 = $(this).height()
		}							 
											 
	})

	$(this).children('.block').css('height',maxHeight)
	//$(this).children('.block').find('h3').css('height',maxHeight2)

}
