$(document).ready(function(){
	$('#content-form').hide();
	
	$('#goto-content').click(function() {
		$('#content-form').show();
		$('#page-1-title').focus();
		$(document).scrollTop(320);		
		$('#design-preferences').hide();
	});
	
	$('#goto-design').click(function() {
		$('#design-preferences').show();
		$('#fullname').focus();
		$(document).scrollTop(320);
		$('#content-form').hide();
	});
	
	$(':submit').click(function() {
		$('p.process-form').css('display', 'block');
	});
});