$(document).ready(function(){
	$("input[type='radio']").checkBox();

        $(".submitbutton input").click(function(){
           if($(this).hasClass("disabled")){
              return false;
           }
        });

	$(".input-wrapper.year span.ui-radio").click(function(){
		if($("#card-year").is(":checked")){
		}
		if($("#internet-year").is(":checked")){
			$("div.input-wrapper.year div.radio-button-sub.internet").show();
		}

		$("form.year div.submitbutton input").removeClass("disabled");
		$("form.month div.submitbutton input").addClass("disabled");
	});

	$(".input-wrapper.month span.ui-radio").click(function(){
		if($("#card-year").is(":checked")){
		}
		if($("#internet-month").is(":checked")){
			$("div.input-wrapper.month div.radio-button-sub.internet").show();
		}

		$("form.month div.submitbutton input").removeClass("disabled");
		$("form.year div.submitbutton input").addClass("disabled");
	});
});

