window.addEvent('domready',function(){
	// target _blank
	$$('a.blank').addEvent('click',function(e){
		new Event(e).stop();
		window.open(this.href);
	});
});
