var base=window.location.toString().replace(/\/[^\/]*$/gi,'/');

window.addEvent('domready',function(){
	$$('ol').tween('height',30);
	$$('a').forEach(function(el){if(el.href.replace(base,'').contains('/'))el.set('target','_blank')});
	$$('input').addEvents({
		'focus':function(){this.setStyles({backgroundImage:'none',backgroundColor:'#fff',color:'#000'})},
		'blur':function(){if(!this.setStyles({backgroundColor:'#042952',color:'#789ec6'}).value)this.style.backgroundImage='url('+this.title+')'}
	}).fireEvent('blur')
});
