//JS script for Joomla template
var siteurl = '';

window.addEvent ('load', function(e){
	if (!$('container')) return;
	var divs = $ES('.class name',$('container'));
	var maxh = 0;
	divs.each(function(el, i){
		maxh < el.getStyle('height').toInt()?maxh=el.getStyle('height').toInt():'';
	});
	divs.each(function(el, i){
		el.setStyle('height', maxh);
	});
});



