$(function() {
	
	
	// FORM FOCUS
	
	//-- login form
	if ($('#loginForm #emailaddress').attr('value') != '') {
		$('#password').focus();
	}
	else {
		$('#loginForm #emailaddress').focus();
	}

	//-- login form rememberme checkbox logic
	var remembermehasbeentouchedbyuser = false;
	$('#rememberme').click(function(){
		remembermehasbeentouchedbyuser = true;
	})
	$('#loginForm #password').focus(function(){
		if (!remembermehasbeentouchedbyuser) $('#rememberme').attr('checked',true); // default to checked if user has not touched the checkbox
	})
	
	//-- forgot password form
	if ($('#forgotForm #emailaddress').attr('value') == '') {
		$('#emailaddress').focus();
	}

	//-- forgot password reset form
	if ($('#resetForm #password').attr('value') == '') {
		$('#password').focus();
	}

	//-- signup form: step 3
	if ($('#createForm #firstname').attr('value') == '') {
		$('#firstname').focus();
	}

	//-- GMT offsets
	$('input[name=gmtoffset]').attr('value',gmtoffset());

	// DIALOGS
	$('a.contact').click(function() {
		$('#contactus_dialog').dialog('open');
	});
	
	$('a.privacy').click(function() {
		$('#privacy_dialog').dialog('open');
	});
		
});
