// document.observe("dom:loaded", function() {});

window.onload = init;

function init() {
	// igualem l'amplada del peu d'imatge amb la imatge (notícies)
	if($('news') != null) nWidth = $('news').getWidth();
	if($('imagetext') != null) {
		$('imagetext').setStyle({
			width: nWidth+'px'
		});
	}
	// afegim un clear al primer element de cada línia de les llistes d'equp
	$$('#directivos ul li:nth-child(3n+1)').invoke('addClassName', 'clear');
	$$('#consultores ul li:nth-child(3n+1)').invoke('addClassName', 'clear');
	$$('#financieros ul li:nth-child(3n+1)').invoke('addClassName', 'clear');
}