var menu = function () {
	
	this.tween				= function (object){
		document.getElementById(object).style.display = "none";
	};
	
	this.tweenout			= function (object)
	{
		document.getElementById(object).style.display = "";
	};
	
	
};
