/**
 * FICHIER A UTILISER LORSQU IL N Y A PAS PROTOTYPE INCLUS A LA PAGE 
 * CAR SINON LE $ EST SURCHARGE
 * 
 * ELLE GENERAL
 * $.la.elle_general.echo(text)
 *  
**/

(function ($){

	$.la = $.la || {};

	$.extend(true, $.la,
	{

        /* ELLE GENERAL */
        elle_general:{
			echo: function( text){
            	alert(text);
            }
       }

	});

})(jQuery);

//$.la.elle_general.echo("test");