$(document).ready(function(){
	$('#address_pop').hide();
	$('#invoice_pop').hide();
	$('#favorite_pop').hide();
	$('#reach').show();
	$('#pay1').click(function(){
		if(this.checked){
		$('#reach').show();
		$('#pay1_content').show();
		$('#pay2_content').hide();
			}
		}
	)
	
	
	$('#pay2').click(function(){
		if(this.checked){
		$('#reach').show();
		$('#pay1_content').hide();
		$('#pay2_content').show();
			}
		}
	)
	$('#address_key').click(function(){
		$('#address_pop').fadeIn('slow');
		$('.mask').height($(document).height());
		if($.browser.msie){
			$('.mask').width($(document).width());
			$('#checkoutmain select').css({visibility:'hidden'});
			}
		return false;
		}
	)
	
	$('#favorite_key').click(function(){
		$('#favorite_pop').fadeIn('slow');
		$('.mask').height($(document).height());
		if($.browser.msie){
			$('.mask').width($(document).width());
			$('#checkoutmain select').css({visibility:'hidden'});
			}
		return false;
		}
	)
	
	
	$('#invoice_key').click(function(){
		$('#invoice_pop').fadeIn('slow');
		$('.mask').height($(document).height());
		if($.browser.msie){
			$('.mask').width($(document).width());
			$('#checkoutmain select').css({visibility:'hidden'});
			}
		return false;
		}
	)
	$('.close').click(function(){
		$(this).parent().parent().hide();
		if('$.browser.msie 6.0'){$('#checkoutmain select').css({visibility:'visible'});}
		return false;
		}
	)
	$('.overlaymain .handle :input').click(function(){
		$(this).parent().parent().parent().parent().hide();
		if('$.browser.msie 6.0'){$('#checkoutmain select').css({visibility:'visible'});}
		})
	
})


