

function lost_password_prompt()
{
	show_alert('lost_password');	
	$('courriel').focus();	
}

function lost_password_feedback(email,success)
{
	lost_email=email;
	if(success)
		show_alert('email_sent');
	else
		show_alert('email_not_found');	
}

function log_me()
{

	show_alert('login');
	$("nom_usager").focus();
	set_main_function("login_user()");


}
 
function change_login_button()
{
	if (!is_in_process("initialize_users")) {
		if (selected_user.id != 0) {
			$("logger").style.display = "none";
			$("quitter").style.display = "block";	
		}
		else
		{
			$("logger").style.display = "block";
			$("quitter").style.display = "none";
		}
		loadHeaderButtons();
	}
	else {
		change_login_button.delay(global_delay);
	}
}

function changeDomain(site)
{
	if(site=="roue")
		window.location.href="home.aspx?site=roue";
	else
		window.location.href="home.aspx?site=cyclo";
}


var the_index = 3;
var reverse = 0;

function fading_tables(){
	new PeriodicalExecuter(function(){
		if (current_window == "index") {
			if (the_index == 1)//restart
			{
				$("photo1").style.display = "block";
				$("photo2").style.display = "block";
				$("photo3").style.display = "block";
				the_index = 3;
			}
			else {
			
				$("photo" + the_index).style.display = "none";
				the_index--;
			}
		}
	},10);
}