/*

	core lib for all scripts
	
	
	zoonman at gmail . com
	
*/




var _eCache = {};
function $(id) {
	return _eCache[id] || (_eCache[id] = (document.getElementById) ? document.getElementById(id) : document.all(id));
}
 