$(document).ready(function() {
	
	$('#login-form').attr("action",('https://'+document.location.hostname+'/Account/LogOn/?returnUrl=http://'+document.location.hostname+document.location.pathname));

    $('#login-email').focus(function() {
        if ($(this).val() == 'email address') {
            $(this).val('');
        }
    }).blur(function() {
        if ($(this).val() == '' && $(this).val() != 'email address') {
            $(this).val('email address');
        }
    });

	$('#login-password-display').focus(function() {
        $(this).remove();
        $('#login-password').show().focus();
    });
	
    $('#login-password-display').click(function() {
        $(this).remove();
        $('#login-password').show().focus();
    });

    $('.button-sign-in').click(function() {
        $('#login-form').submit();
    });

	$('.not-registered-toggle').click(function(){
		$('#not-registered-toggle').fadeOut('fast', function(){
			$('#registered-toggle').fadeIn('fast');
		});
		return false;
	});
	$('.registered-toggle').click(function(){ 
		$('#registered-toggle').fadeOut('fast', function(){
			$('#not-registered-toggle').fadeIn('fast');
		});
		return false;
	});

});