Event.observe(window, 'load', function() {
	$$('div#contentBott > div:nth-child(odd)').each(function(s) {
		s.addClassName('odd');
	});
	$$('div#contentBott > div:nth-child(even)').each(function(s) {
		s.addClassName('even');
	});
});