$(function() {			
	$('#forgotten').show();
	
	$('#forgotten').click(function() {
		document.location = '/auth/forgotten/email/' + $('#email').val();
		
		return false;
	});
	
	$('#register').show();
	
	$('#register').click(function() {
		document.location = '/register/buyer';
		
		return false;
	});

	$('#register_optic2000').show();

	$('#register_optic2000').click(function() {
		document.location = '/register/optic2000';
		return false;
	});
});

