/**
 * @file
 * Fast User Menu. Not using JQuery for compatibility across the entire site.
 **/

	BLIP.Class.create("BLIP.Controls.FastUserMenu", Object, 
		function(config) {}, 
		{

			hide: function() {
				var menu = document.getElementById("IncognitoUserMenu");
				menu.style.display = "none";
			},
		
			setMenuWidth: function(){
				var menuRow = document.getElementById("IncognitoMasterRow");
				var menu = document.getElementById("IncognitoUserMenu");
				menu.style.width = parseInt(menuRow.offsetWidth) + "px";
			},
			
			show: function() {
				this.setMenuWidth();
				var menu = document.getElementById("IncognitoUserMenu");
				menu.style.display = "block";
			}
		}
	);	

