/*
 * Megaspree
 * By Megaspree (http://www.megaspree.de)
 * Copyright (c) 2009 MEGASPREE
*/
function hide_menu(tag)
{
	$("#"+tag).slideUp("slow");
	//$("#spreebutton").show("slow");
}

function show_menu(tag)
{
	$("#"+tag).slideDown("slow");
	//$("#spreebutton").hide("slow");
	
}

function toggle_menu(tag)
{
	if($("#"+tag).css("display") == "none")
	{
		show_menu(tag);
	}
	else
	{
		hide_menu(tag);
	}
	
}