var MenuInit = {
	Init: function()
	{
		var el = document.getElementById(MenuInit.Element);
		
		if (el == null)
		{
			setTimeout(function() { MenuInit.Init(); }, 100);
		}
		
		var menu = new Menu(MenuInit.Element);
		var params = {
			items: [{link: '/tips/authors', content: '<img src="/tips/images/byauthor.gif" height="18" alt="By author" />', cookie: 'authors'}, 
					{link: '/tips/tags', content: '<img src="/tips/images/bytag.gif" height="18" alt="By tags" />', cookie: 'tags'}]
				};
		
		menu.init(params);
		
		MenuInit.Menu = menu;
	},
	
	Element: 'tips_menu',
	Menu: null
};

MenuInit.Init();