function manageHideShow(scrollDim) {
	var that = this;
	this.scroll = scrollDim;
	this.visibile = false;
}

manageHideShow.prototype.hideShow = function() {
	if (this.visibile===true) {
		this.visibile = false;
		return (this.scroll*(-1));
	} else {
		this.visibile = true;
		return (this.scroll);
	}
}

manageHideShow.prototype.isVisible = function() {
	return (this.visibile);
}
