$(function(){
	try{
		$('#userName').focus();
	}catch(e){
		//do nothing
	}
	$('a[rel*=external]').click(function(){
		window.open(this.href);
		return false;
	});
});
