Menu_2WP = Class.create();
Object.extend(Menu_2WP.prototype, 
{
	initialize: function(el) {
		this.container = $(el);
		if (this.container == undefined) return 0;
		
		new Effect.BlindDown(this.container);
	}
});