	window.addEvent('domready', function() {

		// Adding flashlight functionality to appropriately marked links
		$$('.flashlight').addEvent('click', function(e) {
			e = new Event(e).stop();
			this.blur();
			u.flashLight(this.getProperty('href').substr(1), this.hasClass('follow'));
		});

		$$('#links input').addEvent('click', function(e) {
			u.setSelection(this, 0, this.value.length)
		});
/*
		$$('select[multiple]').each(function(el){
			u.multiSelect.castOn(el);
		});
*/
	});
