/** 
 *	arnaud@2exvia.com 
 *	27/08/2009 16:08:51
 *
 */

/**
 * Remplace document.getElementById
 */ 
function $(id) {  
	if (id == undefined) return false;
	return (document.getElementById(id.toString())) ? document.getElementById(id.toString()) : false; 
}
