$(document).ready(function() {
	$('#issue_number').hide();
	if($('#shipping_same').val() == 1) {
		$('#shipping_details').hide();
	} else {
		$('#not_the_same').hide();
	}
	$('#the_same').click(function() {
		$('#shipping_details').hide();
		$('#not_the_same').show();
		$('#shipping_same').val(1);
		return false;
	});
	$('#not_the_same').click(function() {
		$('#shipping_details').show();
		$('#not_the_same').hide();
		$('#shipping_same').val(0);
		return false;
	});
	
	$('#paypal').click(function() {
		$('#paypal_hide').hide();
		$(this).children('input').click(); //nasty ie bug
	});
	$('#credit_card').click(function() {
		$('#paypal_hide').show();
		$(this).children('input').click(); //nasty ie bug
	});
});
