
function bulle(id){
	this.id='#'+id;
	this.content=$(this.id).html();
this.create = function()
         {
         $(this.id).html('');
         //<div class="haut">
         $(this.id).append('<div class="haut"> </div>');
         	
             
         //<div class="milieu">
         $(this.id).append('<div class="milieu">'+this.content+'</div>');
         	
         	
         
         
        
         $(this.id).addClass("bulle");
         
         };
this.show = function()
         {
         $(this.id).show();
        
         };
this.hide = function()
         {
         $(this.id).hide();
         };
this.hide();
this.create();
return this;

};


