/* 
::	Type					::		JSFrameWork								::
::	Auteur					:: 		Harwin Borger							::
::	Website					::		StudioBorger.com						::
::	E-mail					:: 		Harwin@StudioBorger.com					::
::																			::
:: 	Het is niet toegestaan dit script of onderdelen hiervan te gebruiken 	::
::	zonder toestemming van de auteur.										::
*/
var d= document;
var IE = (navigator.appName == 'Microsoft Internet Explorer') ? true : false;

function $(id){
	if(id.match('#')){
		id = id.replace(/#/,'');
		return d.getElementById(id);
	}else if(id.match('<') && id.match('>')){
		id = id.replace(/</,'');
		id = id.replace(/>/,'');
		return d.getElementsByTagName(id);
	}
}
