
//pour la pagination
var page = function ( div, request, element ){
	J('div.donnees > table > thead > tr > th').each(function(){
		if( J(this).attr('id') != element ){
			J(this).removeAttr('class');
		}
	})
	J.ajax({
		beforeSend: function(){
			//J('#loading').html("<img src='assets/images/loading.gif' />");
		},
		type: 'GET',
		url : request,
		success : function ( result ){
			J(div).html( result );
		}
	});
}
