var J2cnsMenu;

var Menu = Class.create();

Menu.prototype = {

	//initialize: function(mObj,mControl) {
	initialize: function(mObj) {
		this.m = mObj;
		//this.c = mControl;
		//this.cImgRel = "../img/top/menu_close.gif";
		//this.mImgRel = "../img/top/bar01.gif";
	},
	
	hide: function ()
	{
		this.m.style.display = 'none';
		//this.c.src = this.mImgRel;
	},
	
	show: function ()
	{
		if(this.m.style.display == "")
		{
			this.hide();
			return false;	
		}
		
		this.m.style.display = '';
		//this.c.src = this.cImgRel;
	}
}

Event.observe(window, 'load', function () {
	J2cnsMenu = new Menu($("spreadMenuArea"),$('serviceViewImg'));	
});