window.addEvent('domready', function(){
	var opened;
	if($('options')){
		$$('#options li').each(function(item){
			item.addEvent('click', function(){
				$$('.box').each(function(item){
					if(item.getStyle('top')!=='-650px'){ item.setStyle('top', -650); }}
				);
				$(item.id + "_box").tween('top', [-650, 0]);
			});
		});
	}
});
