/** ------------------------------------------------------
// Initialisation 
*/
$(document).ready(function(){
						   
	// Liste déroulante des centrales nucléaires
	$("#CENTRALE").change(function(event){
		event.preventDefault();
		// alert($("#CENTRALE").attr('value'));
		// redirige au click vers l'attribue de valeur 'value'
		document.location.href = $("#CENTRALE").attr('value');
	 });
 });