var main, upload, info, recent, privacy, submission, gliders, darts, whirly;
window.onload = function() {

	main = new fx.Combo
	('main', {duration: 600, height: true, opacity: true});
	
	recent = new fx.Combo
	('recent', {duration: 600, height: true, opacity: true});

	upload = new fx.Combo
	('upload', {duration: 600, height: true, opacity: true});
	upload.hide();
	
	gliders = new fx.Combo
	('gliders', {duration: 600, height: true, opacity: true});
	gliders.hide();
	
	darts = new fx.Combo
	('darts', {duration: 600, height: true, opacity: true});
	darts.hide();
	
	whirly = new fx.Combo
	('whirly', {duration: 600, height: true, opacity: true});
	whirly.hide();
	
	privacy = new fx.Combo
	('privacy', {duration: 600, height: true, opacity: true});
	
	submission = new fx.Combo
	('submission', {duration: 600, height: true, opacity: true});
	submission.hide();
	
	info = new fx.Combo
	('info', {duration: 600, height: true, opacity: true});
	info.hide();
}

function closeAll(){
	main.hide();
	recent.hide();
	upload.hide();
	info.hide();
	submission.hide();
	gliders.hide();
	darts.hide();
	whirly.hide();
}