$(document).ready(function () {
	
	// Focus sur les champs d'inscription a l'infolettre
	if ($(".TxtBox").length > 0) {
        $(".TxtBox").each(function () {
            $(this).val($(this).attr("title"));
            $(this).focus(function () {
                if ($(this).val().length == 0 || $(this).val() == $(this).attr("title")) {
                    $(this).val("");
                }
            });
            $(this).blur(function () {
                if ($(this).val().length == 0 || $(this).val() == $(this).attr("title")) {
                    $(this).val($(this).attr("title"));
                }
            });
        });
    }
	
});
