/**

 * lw rz

 * equal height of columns via mootools because css with shadow images is ...

 */





window.addEvent('domready', function() {

	equalHeights();

});





function equalHeights() {

	

	container = $$('.Column2', '.Column3', '.Column4', '.Column5');

	 

	container.each( function(e){

		var height = 0;

		divs = e.getElements('.fce_startbox');

		//console.log(divs);

		

		divs.each( function(e){

			 if (e.offsetHeight > height){

			  height = e.offsetHeight;

			 }

		});

		 

		divs.each( function(e){

			 e.setStyle( 'height', height + 'px' );

			 if (e.offsetHeight > height) {

			  e.setStyle( 'height', (height - (e.offsetHeight - height)) + 'px' );

			 }

		});		

	});	

}


