$().ready(function(){
	$("[j='infopage']").bind('click', function(){
		$.post('./modules/stdInfoPage.php', {p:$(this).attr('p')},
		function(){
			$("#content").html(data);
		});
	});
	
	$("[j='profile']").bind('click', function(){
		$.post('./modules/profile.php', {p:$(this).attr('p')},
		function(data){
			$("#content").html(data);
		});
	});
	
});

var ret;
function formOk(){
msg1 = '';
msg2 = '';
ret= true;
$("[c='notEmpty']").each(function(){
	if($(this).val() == ''){
		$(this).css('background', '#FFBFBF');
		msg1 = 'Certains champs ne peuvent pas être vide.';
		ret = false;
	}else
		$(this).css('background', '');
});

$("[f='simpleChar']").each(function(){
	value = $(this).val();
	var numericExpression = /^[0-9A-Za-z_\/]+$/;
	if(!value.match(numericExpression)){
		$(this).css('background', '#FFBFBF');
		msg2 = ' Caractères illégaux.';
		ret = false;
	}else
		$(this).css('background', '');
});


if(msg1 != '' || msg2 != '')
	alert(msg1+msg2); 
return ret; 
}
