jQuery(document).ready(function(){
	jQuery("#newCardBlocForm .accountAskBlock input[type=radio]").bind("click", function(){
		var inputId = jQuery(this).attr("id");
		jQuery("#newCardBlocForm .cardFormDisplay").hide();
		jQuery("#newCardBlocForm .bottom_newCardBlocForm p").show();
		switch (inputId) {
			case "haveAcount1":
				jQuery("#newCardBlocForm #haveAccountBlock1").show();
				jQuery("#newCardBlocForm .accountAskBlock").addClass("first")
				break;
			case "haveAcount2":
				jQuery("#newCardBlocForm #haveAccountBlock2").show();
				jQuery("#newCardBlocForm .accountAskBlock").addClass("first")
				break;
			
		}
	});
	
	jQuery("#newCardBlocForm .cardFormDisplay, #newCardBlocForm .bottom_newCardBlocForm p").hide();	
	jQuery("#newCardBlocForm .accountAskBlock input[type=radio]:checked").trigger("click");
	
	/* AJOUT DIGITAS 22/01/2010 */
		jQuery(".formContainer .phoneBlock .showToolTip").hover(function(){
		jQuery(".formContainer .displaySelectTooltip").css("visibility","hidden");
		jQuery(".formContainer .phoneBlock .toolTipCU").css("display","inline");
	 },function(){
		jQuery(".formContainer .displaySelectTooltip").css("visibility","visible");
		jQuery(".formContainer .phoneBlock .toolTipCU").css("display","none");
	 });
	/* FIN AJOUT DIGITAS 22/01/2010 */
});

