function Actions()
{

	this.toggleRadio = function( active )
	{
		$('.tariff_item').each( function( index )
		{
			this.className = (this.id == active) ? 'tariff_item active' : 'tariff_item';
		} );
	};

}

var actions = new Actions();

