$(document).ready(function() {
	if (!$('#order_card_type').length) return;
	if (!is_switch) $('#switchno').hide();
	
	$('#order_card_type').change(function() {
		if ($(this).val() == 'switch') {
			$('#switchno input').val('');
			$('#switchno').fadeIn(300);
		}
		else {
			$('#switchno').fadeOut(300);
		}
	});
	
	$('#backcart').click(function() {
		window.location = '/cart';
	});
	
	$('.checkout-button').click(function(e) { $('.exhibition-form').submit(); e.preventDefault(); });
	
	$('.address:not(.address_' + default_selected_address + ')').hide();

	$('input[name=address]').click(function() {
		var self = $(this);
		$('.address:not(.address_' + self.val() + ')').slideUp(200);
		$('.address.address_' + self.val()).slideDown(200);
	});
	
	$('[rel^=facebox]').facebox();
});