$(document).ready(function(){
	
	
	$('#image_box_controls li').click(function(){
		
		$('#image_box_controls li').each(function(){$(this).removeClass('control_active');});
		$(this).addClass('control_active');
		var control = $(this).attr('control');
		
		$('.image_box').each(function(){$(this).hide();});
		
		control = '#box_' + control;
		$(control).show();
		
	});
	
	
	$('#email_address').focus(function(){
		if(this.value == 'Enter e-mail address')
			this.value = '';
	});
	
	$('#email_submit').click(function(){	
		$.ajax({
			type: 'POST',
			url: '/email_registration.php',
			data: 'email='+ $('#email_address').val(),
			success: function(msg){
				$('#email_signup').html(msg);
			}
		});
		return false;
	});
	
	
});
