$.fn.setAllToMaxHeight = function(){
return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
}

$(document).ready( function() {


	 $('#slide').nivoSlider( {effect:'random', pauseTime:3000, controlNav:true, directionNav:false } );

	 $('.module').setAllToMaxHeight();


});
