/*
Script: Demo.js.
License: Creative Commons license.
Copyright: Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
*/

window.addEvent('domready', function() { 
   
	var p = $('info').fade('hide');
	$(document.body).getElement('h3.info a').addEvent('click', function(){ this.fade('toggle'); }.bind(p));
	
});