/*------------------------------------------------------------------------
# JOOFORGE.com - Il Web All'Italiana
# ------------------------------------------------------------------------
# Copyright © 2004-2009 JOOFORGE.com. Tutti i diritti riservati.
# Website:  http://www.jooforge.com/
-------------------------------------------------------------------------*/

var PandaNotes = {
	timer: function() {
		setTimeout(PandaNotes.end, PandaNotes.delay);
	},
	init: function() {
		$('close-panda').addEvent("click", PandaNotes.end);
		PandaNotes.start();
	},
	start: function() {
		new Fx.Style($('jf-pandanotes'), 'opacity', {duration: 400, onComplete: PandaNotes.timer}).start(0, 0.9);
	},
	end: function() {
		clearTimeout(PandaNotes.timer);
		new Fx.Style($('jf-pandanotes'), 'opacity', {duration: 400}).start(0.9, 0);
	}
}

window.addEvent("load", PandaNotes.init);
