function select_menu(menu, flag)
{	
	for (count=1;count<=4;count++)
		if (menu.id != count)
			$("#dropdown_"+count).fadeOut();	
	
	if (flag==1)	{	
		if (menu.getAttribute('id')=="1")
			$("#dropdown_1").fadeIn(250);
		if (menu.getAttribute('id')=="2")
			$("#dropdown_2").fadeIn(250);
		if (menu.getAttribute('id')=="3")
			$("#dropdown_3").fadeIn(250);
		if (menu.getAttribute('id')=="4")
			$("#dropdown_4").fadeIn(250);

	}	
}

