jQuery(document).ready(function(){
	



  jQuery("input#payment_time_span_monthly_subscription").click(function() {
		
		jQuery(".checkout_creditcard").fadeOut(0)
    jQuery("#checkout_creditcard_monthly").fadeIn(400)

  })

  jQuery("input#payment_time_span_one_day").click(function() {
		jQuery(".checkout_creditcard").fadeOut(0)
		
    jQuery("#checkout_creditcard_one_day").fadeIn(400)
  })

  jQuery("input#payment_time_span_one_week").click(function() {
		jQuery(".checkout_creditcard").fadeOut(0)
		
    jQuery("#checkout_creditcard_one_week").fadeIn(400)
  })

  jQuery("input#payment_time_span_one_month").click(function() {
		jQuery(".checkout_creditcard").fadeOut(0)
		
    jQuery("#checkout_creditcard_one_month").fadeIn(400)
  })

  jQuery("input#payment_time_span_three_months").click(function() {
		jQuery(".checkout_creditcard").fadeOut(0)
		
    jQuery("#checkout_creditcard_three_months").fadeIn(400)
  })

  jQuery("input#payment_time_span_six_months").click(function() {
		jQuery(".checkout_creditcard").fadeOut(0)
		
    jQuery("#checkout_creditcard_six_months").fadeIn(400)
  })

  jQuery("input#payment_time_span_one_year").click(function() {
		jQuery(".checkout_creditcard").fadeOut(0)
		
    jQuery("#checkout_creditcard_one_year").fadeIn(400)
  })

})