jQuery(function ($) {

	// Login form
	$('#login').initDefaults();
	
	// Image switcher
	$('#splash > ul li.l1').click(function(event) { 
		
		event.preventDefault();
		$('#splash .page').hide(); $('#splash .p1').show(); 
		
	});
	
	$('#splash > ul li.l2').click(function(event) { 
		
		event.preventDefault();
		$('#splash .page').hide(); $('#splash .p2').show(); 
		
	})
	$('#splash > ul li.l3').click(function(event) { 
		
		event.preventDefault();
		$('#splash .page').hide(); $('#splash .p3').show(); 
		
	})
	
	// Show the JavaSript only "Enter your number" form
	$('#enter_number').show();
	
	// The link acts as a button
	$('#enter_number_link').click(function (event) {
	
		event.preventDefault();
		
		location.href = '/account/step1?phone=' + $('#your_number').val();
	
	});

});