//
// Check if it's a DOM compatible browser, or older Operas which think they aren't but are.
//
function checkDOM() {
	if (document.getElementById && document.createTextNode) {
		return true;
	} else {
		return false;
	}
}


//
// Intialise everything we need to. Call init on window load, after checking it's a DOM compatible browser.
//
function init() {
	
}


//if (checkDOM()) {
//	addEvent(window, 'load', init, false);
//}

 