if (!window.Subscription) {
    var Subscription = new Object();
}

Subscription.Mobile_Play_Business = Class.create({
	initialize : function() {
		this.container 	= $('container');
		this.radio  	= $('subscription.mobile.play.business.number_carried_over'); 
		this.radio2		= $('subscription.mobile.play.business.new_number');
		
		Event.observe(this.radio, 'click', this.click.bind(this,this.radio));
		Event.observe(this.radio2, 'click', this.click.bind(this,this.radio2));
		
		this.container.hide();
		this.radio.checked = false;
		this.radio2.checked = false; 						
	},

	click : function(radio) { 
		if (radio==this.radio && this.radio.checked) {
			Effect.BlindDown(this.container);			
		} else {
			Effect.BlindUp(this.container);
		}
	}
});



