$(document).ready(function(){
	$('a').click(function(){
		this.blur();
	});

	$(':input, :password')
	.focus(function(){
		$(this).addClass('fieldFocus');
	})
	.blur(function(){
		$(this).removeClass('fieldFocus');
	});
	
	// put cursor in first input
	var x = document.getElementsByTagName('input');
	if ( x.length > 0 && $(x[0]).is(':visible') )
	{
		if (x[0].value == '') x[0].focus();
	};
	
	$('#pageNav').fadeIn('fast');
});