$(document).ready(function(){

	//Effacement des champs au clic
	clearInput();

	//PngFix
	$('img[src$=.png]').ifixpng();
});

function clearInput(){
	var loginClick = false;
	var passwordClick = false;

	$(".login input").click(function(){
		if($(this).attr("name") == "login" && !loginClick){
			$(this).val("");
			loginClick = true;
		}else if($(this).attr("name") == "password" && !passwordClick){
			$(this).val("");
			passwordClick = true;
		}
		if(loginClick && passwordClick){
			$(this).unbind("click");
		}
	});
}
$(document).ready(function(){
	$(".picto").mouseover(function(){
		//$(this).closest("p").text(this.title);
		$(this).parent().children("p").text(this.title);
	});
	$(".picto").mouseout(function(){
		$(this).parent().children("p").text("");
	});
	$(".picto1").mouseover(function(){
		$(this).parent().children("p").text(this.title);
	});
	$(".picto1").mouseout(function(){
		$(this).parent().children("p").text("");
	});
});
