Event.observe(window, 'load', function(){
	
	// Rollovers sur les boutons
	$$('.rollover').each(function(image){
		
		if (! image.id.endsWith('_on')) {
			
			// Image normale
			image.observe('mouseover', function(){		
				image.src= 'images/' + image.id + '_on.jpg';
			});
		
			image.observe('mouseout', function(){		
				image.src= 'images/' + image.id + '.jpg';			
			});		
		}
	});
	
	// Clics sur les onglets et pas uniquements leurs liens texte
	$$('.onglet').each(function(onglet){
		
		onglet.observe('click', function(event){
			
			window.location.href=this.firstDescendant().href;			
			
		});
		
		
	});
	
});