function $(el)
{
	if(typeof el == 'string')
	{
		return document.getElementById(el);
	}

	return el;
}