var _queue = _queue || [];
	_queue.push(['General', function(){

	var ppType = $$('div.priceplan-type');
	
	$$('input.select-pp-type').addEvent('click', function(event){
		
		$$('input.select-pp-type').each(function(element, index){
			var myParent = element.getParent('.radio-box');
			if(event.target === element){
				myParent.addClass('biz-plan-selected');
				ppType[index].setStyle('display','block');
				
			} else {
				myParent.removeClass('biz-plan-selected');
				ppType[index].setStyle('display','none');
				
			}
		});
	});
	
	if (!window.XMLHttpRequest) {
		$$('.radio-box').addEvents({
			'mouseover' : function(){
				$(this).addClass('hover');
			},
			'mouseout' : function(){
				$(this).removeClass('hover');
			}
		});
	}
	
	var ppb = new PricePlanBar($$('.priceplan-section'),{
		elements: 'div.priceplan-section',
		blocks: 'div.priceplan',
		elementClass: 'priceplan-section',
		additionals: ['div#boosters','div#step2header','div#footer-info']
	});
	
	var hb = new HTMLbox({width: 800});

}]);
