$(document).ready(function(){
	// Active tout les zone de texte ayant besoin de la textarea
	$('.JArea').textarea();
	
	// Valide un lien/bouton quand cette classe est activé dessus
	$('.validerAction').click(function() {
		if(confirm('Confirmez vous cette action ?')) {  // Clic sur OK
			if($(this).attr('type') == 'checkbox') {
				$(this).val() = !$(this).val();
			} else {
				return true;
			}
	    } else {
	    	return false;
	    }
	});
	
	// Pour lancer le chat
	$('.chatLancer').click(function() {
		 window.open('./chat/', 'Chat', config='height=700, width=800, toolbar=no, menubar=no, scrollbars=no');
	});
	
	// Texte informatife
	$('.texteInformatife').hover(function(){
		$('#texteInformatife').html($(this).attr('title'));
	},function(){
		$('#texteInformatife').html('&nbsp;');
	});

	
});