jQuery.fn.removeClassExcept = function (val) { return this.each(function () { jQuery(this).removeClass().addClass(val); }); };
jQuery(".google-map-container").removeClassExcept("google-map-container");