$('document').ready(function() {
							 var menu_on_focus=0;
try
	{
	$("#txtqAUTHLOGIN").blur(function() {  menu_on_focus=0; menu_violet();if ($(this).val()=='') { $(this).val('Votre email...') } hideDescription(); return false;  });
  $("#txtqAUTHLOGIN").focus(function() {  menu_on_focus=1; menu_green(); if ($(this).val()=='Votre email...') { $(this).val('') } setDescription($(this).attr('id'),290,48); return false; });

  $("#txtqAUTHPASSWORD").blur(function() { menu_on_focus=0;menu_violet(); if ($(this).val()=='') { $(this).val('Mot de passe...') } hideDescription(); return false;  });
  $("#txtqAUTHPASSWORD").focus(function() {menu_on_focus=1;menu_green(); if ($(this).val()=='Mot de passe...') { $(this).val('') } setDescription($(this).attr('id'),290,48); return false; });
  
  
  $("#loginArea").mouseover(function() {if(!menu_on_focus) {menu_green();}
		
	});
  $("#loginArea").mouseout(function() {if(!menu_on_focus) {menu_violet();}
	});

	}
catch(e)
	{}
})
function menu_green()
{
	//$('#menu').css("background-color", "#b1c800"); 
	$('#menu').css("background-image", "url(/themes/default/img/fondMenuVert.png)"); 
	$('#loginArea').css("background-image", "url(/themes/default/img/SeConnecerVert.png)"); 
	//$('#submitLoginPwd').css("background-color", "#b1c800"); 
}
function menu_violet ()
{
		//$('#menu').css("background-color", "#931d52"); 
		$('#menu').css("background-image", "url(/themes/default/img/fondMenuPrune.png)"); 
		$('#loginArea').css("background-image", "url(/themes/default/img/SeConnecerPrune.png)"); 
		//$('#submitLoginPwd').css("background-color", "#931d52"); 	
}