var Pricing = {

	init: function(){
		Pricing.modal();
	},
	
	modal: function(){
		if (!exists('monthly-modal')) return;
		
		$('curtain').setOpacity(.8).show();
		
		$$F('.b-less-than-10k').addEvent('click', function(e){
			e.stop();
			
			Screenshots.lightsOn();
			
			$('monthly-modal').hide();
			$('monthly-standard').show();
			$('monthly-highvolume').hide();
		});
		
		$$F('.b-more-than-10k').addEvent('click', function(e){
			e.stop();
			
			Screenshots.lightsOn();
			
			$('monthly-modal').hide();
			$('monthly-standard').hide();
			$('monthly-highvolume').show();
		});
	}
	
}

window.addEvent('domready', Pricing.init);