
/* the next line is an example of how you can override default options globally (currently commented out) ... */
 // $.fn.cluetip.defaults.tracking = true;
// $.fn.cluetip.defaults.debug = true;
$(document).ready(function() {
	$("#bt-connect").click(function () { 
			set_login( $("#jj").val(),  $("#mm").val(),  $("#yyyy").val(),  $("#number").val());
    		$("#boxcompte3").animate({ height:470 }, 300 );
    });
	$("#jj").focus(function () { 
			$(this).val("");
    });
	$("#mm").focus(function () { 
			$(this).val("");
    });
	$("#yyyy").focus(function () { 
			$(this).val("");
    });
	$("#number").focus(function () { 
			$(this).val("");
    });
	
	
});