jQuery(document).ready(function()
{
	if ($.browser) {
		if (!$.browser.msie)
		{
			document.getElementById("memberBoxPassword").type = "text";
		}
	}
	
	jQuery("#memberBoxUsername").focus(function()
			{
				if (this.value == "identifiant")
				{
					this.value = '';
				}
			});
	jQuery("#memberBoxUsername").blur(function()
			{
				if (this.value == '')
				{
					this.value = "identifiant";
				}
			});
	jQuery("#memberBoxPassword").focus(function()
			{
				if (this.value == "mot de passe")
				{
					this.value = '';
					this.type = "password";
				}
			});
	jQuery("#memberBoxPassword").blur(function()
			{
				if (this.value == '')
				{
					this.value = "mot de passe";
					this.type = "text";
				}
			});
});