	
window.addEvent('domready', function() {

var divname='toolbar';
if ( !document.getElementById(divname) )
{
  return;
}


	var status = {
		'true': 'open',
		'false': 'close'
	};
	//-vertical


				$(divname).setStyle('margin-bottom', '5px');

	var myVerticalSlide = new Fx.Slide(divname);
	
		myVerticalSlide.hide();
	
	
	window.document.addEvent('keydown', function(e)
	{

		if (e.key=="f2") 
		{
			e.stop();

			myVerticalSlide.toggle();
			if ( status[myVerticalSlide.open]=="close" )
			{
				$(divname).setStyle('margin-bottom', '5px');
				
			} 
		}
	});


});




