Event.observe(document, 'dom:loaded', function(event) {
	
	$$('a.plus').each(function(plus_link) {
		plus_link.observe('click', function(event) {
			this.next().childElements().last().toggle();
			this.className = this.next().childElements().last().visible() ? 'moins' : 'plus';
		});
		
	});
	
});

function pressPlus(id){
	document.getElementById('offreoff'+id).toggle();
	if (document.getElementById('offreoff'+id).visible()) {
		document.getElementById('offreplus'+id).className = 'moins';
	} else {
		document.getElementById('offreplus'+id).className = 'plus';
	}
}

