[javascript]
/* 
 * Mootools : onDOMReady
 *
 * Remarque : les actions prioritaires en premier.
-------------------------------------------------------- */
window.addEvent('domready', function(){

	var nodoka			= new Nodoka();
	var scripts 		= [	/* twitter */
						'http://twitter.com/javascripts/blogger.js',
						'http://twitter.com/statuses/user_timeline/llaumgui.json?callback=twitterCallback2&count=5"' ];
	/* [ . . . ] */
	nodoka.loadJS( scripts );
	/* [ . . . ] */
}); // EODR

/* [ . . . ] */

function Nodoka() {
	
	/* [ . . . ] */

	/*
	 * Ajout des Javascripts distant
	 * @author Guillaume Kulakowski <guillaume_AT_llaumgui_DOT_com>
	 * @since 1.0.1
	 */
	this.loadJS = function loadJS( scripts ) {
		
		scripts.each(function(src){
   			var loadJS = new Element('script', {
    			'src': src,
    			'type': 'text/javascript'
			}).injectInside(document.head);
		});
	};

	/* [ . . . ] */
	
}; // EOC