Apply = {
	init: function() {
		$('firebug-user').observe('mouseover', this.mouseover.bindAsEventListener(this));
		$$('input').first().focus();
	},
	mouseover: function(e) {
		var span = e.findElement('span');
		var margin = parseInt(span.getStyle('marginLeft'));
		span.setStyle({
			marginLeft: (margin? 0 : 100)+'px'
		});
	}
};

document.observe('dom:loaded', Apply.init.bind(Apply));

