UpgradesView.prototype = new PastelBaseView();
UpgradesView.prototype.constructor = UpgradesView;

/**
 * @constructor
 * @base PastelBaseView
 */
function UpgradesView() {

	this.goToAnchor = function(anchor) {
		if($("#" + anchor).length > 0) {
			$('html,body').animate({scrollTop: $("#" + anchor).offset().top}, 'normal');
		}
	};
}
