var vdv = (function( $ ) {
	$(document).ready( function() {
		
		// imposto al contenuto in hp e alle news la stessa altezza
		// prendendo come riferimento il contenitore piu' alto
		
		var max = 0,
			$blocks = $( '.front .node .content, #block-views-listing-news-block .views-row' );
		
		$blocks.each( function() {
			var h = $( this ).height();
			max = Math.max( parseInt( h, 10 ), max );
		} ).each( function() {
			$( this ).height( max );
		} );

	} )
}( jQuery ));;

