$.fn.toggleText=function(a,b){
	return this.each(function(){
		$(this).text($(this).text() == a ? b : a);
	});
};
