function set_checkbox_readonly_value(check_id,target_id){
	if($(check_id).checked==true){
		$(target_id).value='1';
	}else{
		$(target_id).value='0';
	}
	
	return null;
}
function disable_checkbox(traget){
	traget.checked=!traget.checked;
}
function switch_onglet_transition(nb_elements,element_actif){
	for (i=0;i<nb_elements;i++){
		if (i == element_actif) {
			//$('module_onglet_'+i).morph('color:#fff;');
			$('module_onglet_'+i).className='onglet_actif';
			$('module_onglet_left_'+i).style.display='inline';
			$('module_onglet_right_'+i).style.display='inline';
		}else{
			//$('module_onglet_'+i).morph('color:#111;');
			$('module_onglet_'+i).className='onglet';
			$('module_onglet_left_'+i).style.display='none';
			$('module_onglet_right_'+i).style.display='none';
		}
	}
	
	//Effect.Fade('module_sub_content_page_div', { queue: 'front' });
	//Effect.Appear('module_sub_content_page_div' { queue: 'end' });
	$('module_sub_content_page_div').style.display='none';
	Effect.Appear('module_sub_content_page_div');
	
}
