/*  Agil JavaScript framework, version 0.0.0.1
 *  (c) 2008 Gregory Descamps
 *
 *  Prototype is freely distributable under the terms of an MIT-style license.
 *
 *--------------------------------------------------------------------------*/
 $(document).ready(function() {
      $("button").toggle(function () {
      $("p").fadeIn("slow");}, function() {
	  $("p").fadeOut("slow");	  
    });
 }); 


