;(function ($, w){
'use strict';
function advPricingTable(){
var e=$(".filt-monthly"),
d=$(".filt-hourly"),
t=$(".switcher"),
m=$(".monthly"),
y=$(".hourly");
if(t){
t.click(function (){
d.toggleClass("toggler--is-active");
e.toggleClass("toggler--is-active");
m.toggleClass("hide");
y.toggleClass("hide");
})
}}
advPricingTable();
} (jQuery, window));