/**
 * @author joeraygregory
 */
	/*
window.addEvent('domready',function(){
	var debugDIV = new Element('div', {
		'id': 'debugger'
	});
	debugDIV.setText('fgdsf')
	debugDIV.injectTop($('top'));
	$$('div').each(function(el) { 
		el.setProperty('onclick', 'alert("Doh")');
	});

	.each(function(el) {
		var idName = el.getProperty('id');
		document.write(idName+'<br />')
		el.addEvent('click',function(){
			
			debugDIV.setText(idName);
		});
		
		el.addEvent('mouseout',function(){
			debugDIV.removeText();
		});
	}); 
});*/
