[jQuery] jquery toggle class, I needed to switch class....

[jQuery] jquery toggle class, I needed to switch class....


///////////////////////////////////////////////////
/////////// Switch Between Classes ///////////
///////////////////////////////////////////////////
jQuery.fn.switchClass = function(class1,class2) {
if(this.hasClass(class1)){
remove = class1;
add = class2;
} else {
remove = class2;
add = class1;
}
this.removeClass(remove);
this.addClass(add);
};
Hope this helps someone out.