$(function(){
	$('a,area').focus(function(){$(this).blur()});
	$('input[type=text],input[type=password],textarea').focus(function(){$(this).select()});
	$('a[rel=blank]').click(function(){window.open($(this).attr('href'), '_blank');return false});
});
