$(document).ready(function () {

    $(function(){
        $('input').keydown(function(e){
            if (e.keyCode == 13) {
                $(this).parents('form').submit();
                return false;
            }
        });
    });
    
	$('#logInLink').click(function(){$('#metaLinks').hide(); $('#metaLogin').show();$('.subNav').css('margin-top','14px');return false;});
	
	$('#cancelBtn').click(function(){$('#metaLogin').hide(); $('#metaLinks').show();$('.subNav').css('margin-top','15px');return false;});
});
