function display_menu (event) {
		
	switch (event.data.n) {
		case "over":
		
			// Settings
			node = $(this).get(0).nodeName;
			elem = this;
			img = this;
			
			if (node == "IMG")
				elem = $("#" + $(this).attr ("name"));
				
			if (node == "LI")
				img = $("img [name='" + $(this).attr ("id") + "'");
				
			// Give class
			$(elem).addClass ("active");
			
			// Smaller
			$("#header ul li[class!='active']").each (function () {
			
				$(this).stop ().animate ({ width: '114px' }, 150);
			});
		
			// Activate current
			$(elem).stop ().animate ({ width: '323px' }, 350);
		
		break;
		case "out":
		
			// Settings
			node = $(this).get(0).nodeName;
			elem = this;
			img = this;
			
			if (node == "IMG")
				elem = $("#" + $(this).attr ("name"));
				
			if (node == "LI")
				img = $("img [name='" + $(this).attr ("id") + "'");
		
			$(elem).removeClass ("active");
		
			$("#header ul li[class!='active']").each (function () {
				$(this).stop ().animate ({ width: '156px' }, 100);
			});
		
		break;
	}

}