//ajax.js
var BcsAjaxUtil = {
	counter : 1,
	requests : [],

	request : function(url, options) {
		/*
		 * OPTIONS: onComplete (function) - function to call after response is
		 * received returnArgs (object) - object to pass to return function
		 * reverseAjax (boolean) - use reverse ajax. (only one at a time) method
		 * (string) - use "get" or "post". Default is post.
		 */
		var opts = options || {};
		if (!opts.onComplete) {
			document.body.style.cursor = "progress";
			opts.onComplete = function(xmlHttpReq) {
				document.body.style.cursor = "default";
			};
		}
		AjaxUtil.request(url, opts);
	},

	submit : function(form, options) {
		var opts = options || {};
		if (!opts.onComplete) {
			document.body.style.cursor = "progress";
			opts.onComplete = function(xmlHttpReq) {
				document.body.style.cursor = "default";
			};
		}
		AjaxUtil.submit(form, opts);
	},

	update : function(url, id, options) {
		var opts = options || {};
		if (!opts.onComplete) {
			document.body.style.cursor = "progress";
			opts.onComplete = function(xmlHttpReq) {
				document.body.style.cursor = "default";
			};
		}
		AjaxUtil.update(url, id, opts);
	},

	getNextId : function() {
		return AjaxUtil.getNextId();
	},

	remove : function(id) {
		AjaxUtil.remove(id);
	}
};
// jq.autocomplete.js
;
(function($) {
	$.fn.extend( {
		autocomplete : function(urlOrData, options) {
			var isUrl = typeof urlOrData == "string";
			options = $.extend( {}, $.Autocompleter.defaults, {
				url : isUrl ? urlOrData : null,
				data : isUrl ? null : urlOrData,
				delay : isUrl ? $.Autocompleter.defaults.delay : 10,
				max : options && !options.scroll ? 10 : 150
			}, options);
			options.highlight = options.highlight || function(value) {
				return value;
			};
			options.formatMatch = options.formatMatch || options.formatItem;
			return this.each(function() {
				new $.Autocompleter(this, options);
			});
		},
		result : function(handler) {
			return this.bind("result", handler);
		},
		search : function(handler) {
			return this.trigger("search", [ handler ]);
		},
		flushCache : function() {
			return this.trigger("flushCache");
		},
		setOptions : function(options) {
			return this.trigger("setOptions", [ options ]);
		},
		unautocomplete : function() {
			return this.trigger("unautocomplete");
		}
	});
	$.Autocompleter = function(input, options) {
		var KEY = {
			UP : 38,
			DOWN : 40,
			DEL : 46,
			TAB : 9,
			RETURN : 13,
			ESC : 27,
			COMMA : 188,
			PAGEUP : 33,
			PAGEDOWN : 34,
			BACKSPACE : 8
		};
		var $input = $(input).attr("autocomplete", "off").addClass(
				options.inputClass);
		var timeout;
		var previousValue = "";
		var cache = $.Autocompleter.Cache(options);
		var hasFocus = 0;
		var lastKeyPressCode;
		var config = {
			mouseDownOnSelect : false
		};
		var select = $.Autocompleter.Select(options, input, selectCurrent,
				config);
		var blockSubmit;
		$.browser.opera
				&& $(input.form).bind("submit.autocomplete", function() {
					if (blockSubmit) {
						blockSubmit = false;
						return false;
					}
				});
		$input.bind(
				($.browser.opera ? "keypress" : "keydown") + ".autocomplete",
				function(event) {
					lastKeyPressCode = event.keyCode;
					switch (event.keyCode) {
					case KEY.UP:
						event.preventDefault();
						if (select.visible()) {
							select.prev();
						} else {
							onChange(0, true);
						}
						break;
					case KEY.DOWN:
						event.preventDefault();
						if (select.visible()) {
							select.next();
						} else {
							onChange(0, true);
						}
						break;
					case KEY.PAGEUP:
						event.preventDefault();
						if (select.visible()) {
							select.pageUp();
						} else {
							onChange(0, true);
						}
						break;
					case KEY.PAGEDOWN:
						event.preventDefault();
						if (select.visible()) {
							select.pageDown();
						} else {
							onChange(0, true);
						}
						break;
					case options.multiple
							&& $.trim(options.multipleSeparator) == ","
							&& KEY.COMMA:
					case KEY.TAB:
					case KEY.RETURN:
						if (selectCurrent()) {
							event.preventDefault();
							blockSubmit = true;
							return false;
						}
						break;
					case KEY.ESC:
						select.hide();
						break;
					default:
						clearTimeout(timeout);
						timeout = setTimeout(onChange, options.delay);
						break;
					}
				}).focus(function() {
			hasFocus++;
		}).blur(function() {
			hasFocus = 0;
			if (!config.mouseDownOnSelect) {
				hideResults();
			}
		}).click(function() {
			if (hasFocus++ > 1 && !select.visible()) {
				onChange(0, true);
			}
		}).bind(
				"search",
				function() {
					var fn = (arguments.length > 1) ? arguments[1] : null;
					function findValueCallback(q, data) {
						var result;
						if (data && data.length) {
							for ( var i = 0; i < data.length; i++) {
								if (data[i].result.toLowerCase() == q
										.toLowerCase()) {
									result = data[i];
									break;
								}
							}
						}
						if (typeof fn == "function")
							fn(result);
						else
							$input.trigger("result", result
									&& [ result.data, result.value ]);
					}
					$.each(trimWords($input.val()), function(i, value) {
						request(value, findValueCallback, findValueCallback);
					});
				}).bind("flushCache", function() {
			cache.flush();
		}).bind("setOptions", function() {
			$.extend(options, arguments[1]);
			if ("data" in arguments[1]) {
				cache.populate();
			}
		}).bind("unautocomplete", function() {
			select.unbind();
			$input.unbind();
			$(input.form).unbind(".autocomplete");
		});
		function selectCurrent() {
			var selected = select.selected();
			if (!selected)
				return false;
			var v = selected.result;
			previousValue = v;
			if (options.multiple) {
				var words = trimWords($input.val());
				if (words.length > 1) {
					v = words.slice(0, words.length - 1).join(
							options.multipleSeparator)
							+ options.multipleSeparator + v;
				}
				v += options.multipleSeparator;
			}
			$input.val(v);
			hideResultsNow();
			$input.trigger("result", [ selected.data, selected.value ]);
			return true;
		}
		function onChange(crap, skipPrevCheck) {
			if (lastKeyPressCode == KEY.DEL) {
				select.hide();
				return;
			}
			var currentValue = $input.val();
			if (!skipPrevCheck && currentValue == previousValue)
				return;
			previousValue = currentValue;
			currentValue = lastWord(currentValue);
			if (currentValue.length >= options.minChars) {
				$input.addClass(options.loadingClass);
				if (!options.matchCase)
					currentValue = currentValue.toLowerCase();
				request(currentValue, receiveData, hideResultsNow);
			} else {
				stopLoading();
				select.hide();
			}
		}
		;
		function trimWords(value) {
			if (!value) {
				return [ "" ];
			}
			var words = value.split(options.multipleSeparator);
			var result = [];
			$.each(words, function(i, value) {
				if ($.trim(value))
					result[i] = $.trim(value);
			});
			return result;
		}
		function lastWord(value) {
			if (!options.multiple)
				return value;
			var words = trimWords(value);
			return words[words.length - 1];
		}
		function autoFill(q, sValue) {
			if (options.autoFill
					&& (lastWord($input.val()).toLowerCase() == q.toLowerCase())
					&& lastKeyPressCode != KEY.BACKSPACE) {
				$input.val($input.val()
						+ sValue.substring(lastWord(previousValue).length));
				$.Autocompleter.Selection(input, previousValue.length,
						previousValue.length + sValue.length);
			}
		}
		;
		function hideResults() {
			clearTimeout(timeout);
			timeout = setTimeout(hideResultsNow, 200);
		}
		;
		function hideResultsNow() {
			var wasVisible = select.visible();
			select.hide();
			clearTimeout(timeout);
			stopLoading();
			if (options.mustMatch) {
				$input.search(function(result) {
					if (!result) {
						if (options.multiple) {
							var words = trimWords($input.val()).slice(0, -1);
							$input.val(words.join(options.multipleSeparator)
									+ (words.length ? options.multipleSeparator
											: ""));
						} else
							$input.val("");
					}
				});
			}
			if (wasVisible)
				$.Autocompleter.Selection(input, input.value.length,
						input.value.length);
		}
		;
		function receiveData(q, data) {
			if (data && data.length && hasFocus) {
				stopLoading();
				select.display(data, q);
				autoFill(q, data[0].value);
				select.show();
			} else {
				hideResultsNow();
			}
		}
		;
		function request(term, success, failure) {
			if (!options.matchCase)
				term = term.toLowerCase();
			var data = cache.load(term);
			if (data && data.length) {
				success(term, data);
			} else if ((typeof options.url == "string")
					&& (options.url.length > 0)) {
				var extraParams = {
					timestamp : +new Date()
				};
				$.each(options.extraParams, function(key, param) {
					extraParams[key] = typeof param == "function" ? param()
							: param;
				});
				$.ajax( {
					mode : "abort",
					port : "autocomplete" + input.name,
					dataType : options.dataType,
					url : options.url,
					data : $.extend( {
						q : lastWord(term),
						limit : options.max
					}, extraParams),
					success : function(data) {
						var parsed = options.parse && options.parse(data)
								|| parse(data);
						cache.add(term, parsed);
						success(term, parsed);
					}
				});
			} else {
				select.emptyList();
				failure(term);
			}
		}
		;
		function parse(data) {
			var parsed = [];
			var rows = data.split("\n");
			for ( var i = 0; i < rows.length; i++) {
				var row = $.trim(rows[i]);
				if (row) {
					row = row.split("|");
					parsed[parsed.length] = {
						data : row,
						value : row[0],
						result : options.formatResult
								&& options.formatResult(row, row[0]) || row[0]
					};
				}
			}
			return parsed;
		}
		;
		function stopLoading() {
			$input.removeClass(options.loadingClass);
		}
		;
	};
	$.Autocompleter.defaults = {
		inputClass : "ac_input",
		resultsClass : "ac_results",
		loadingClass : "ac_loading",
		minChars : 1,
		delay : 400,
		matchCase : false,
		matchSubset : true,
		matchContains : false,
		cacheLength : 10,
		max : 100,
		mustMatch : false,
		extraParams : {},
		selectFirst : true,
		formatItem : function(row) {
			return row[0];
		},
		formatMatch : null,
		autoFill : false,
		width : 0,
		multiple : false,
		multipleSeparator : ", ",
		highlight : function(value, term) {
			return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)("
					+ term
							.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,
									"\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"),
					"<strong>$1</strong>");
		},
		scroll : true,
		scrollHeight : 180
	};
	$.Autocompleter.Cache = function(options) {
		var data = {};
		var length = 0;
		function matchSubset(s, sub) {
			if (!options.matchCase)
				s = s.toLowerCase();
			var i = s.indexOf(sub);
			if (i == -1)
				return false;
			return i == 0 || options.matchContains;
		}
		;
		function add(q, value) {
			if (length > options.cacheLength) {
				flush();
			}
			if (!data[q]) {
				length++;
			}
			data[q] = value;
		}
		function populate() {
			if (!options.data)
				return false;
			var stMatchSets = {}, nullData = 0;
			if (!options.url)
				options.cacheLength = 1;
			stMatchSets[""] = [];
			for ( var i = 0, ol = options.data.length; i < ol; i++) {
				var rawValue = options.data[i];
				rawValue = (typeof rawValue == "string") ? [ rawValue ]
						: rawValue;
				var value = options.formatMatch(rawValue, i + 1,
						options.data.length);
				if (value === false)
					continue;
				var firstChar = value.charAt(0).toLowerCase();
				if (!stMatchSets[firstChar])
					stMatchSets[firstChar] = [];
				var row = {
					value : value,
					data : rawValue,
					result : options.formatResult
							&& options.formatResult(rawValue) || value
				};
				stMatchSets[firstChar].push(row);
				if (nullData++ < options.max) {
					stMatchSets[""].push(row);
				}
			}
			;
			$.each(stMatchSets, function(i, value) {
				options.cacheLength++;
				add(i, value);
			});
		}
		setTimeout(populate, 25);
		function flush() {
			data = {};
			length = 0;
		}
		return {
			flush : flush,
			add : add,
			populate : populate,
			load : function(q) {
				if (!options.cacheLength || !length)
					return null;
				if (!options.url && options.matchContains) {
					var csub = [];
					for ( var k in data) {
						if (k.length > 0) {
							var c = data[k];
							$.each(c, function(i, x) {
								if (matchSubset(x.value, q)) {
									csub.push(x);
								}
							});
						}
					}
					return csub;
				} else if (data[q]) {
					return data[q];
				} else if (options.matchSubset) {
					for ( var i = q.length - 1; i >= options.minChars; i--) {
						var c = data[q.substr(0, i)];
						if (c) {
							var csub = [];
							$.each(c, function(i, x) {
								if (matchSubset(x.value, q)) {
									csub[csub.length] = x;
								}
							});
							return csub;
						}
					}
				}
				return null;
			}
		};
	};
	$.Autocompleter.Select = function(options, input, select, config) {
		var CLASSES = {
			ACTIVE : "ac_over"
		};
		var listItems, active = -1, data, term = "", needsInit = true, element, list;
		function init() {
			if (!needsInit)
				return;
			element = $("<div/>").hide().addClass(options.resultsClass).css(
					"position", "absolute").appendTo(document.body);
			list = $("<ul/>")
					.appendTo(element)
					.mouseover(
							function(event) {
								if (target(event).nodeName
										&& target(event).nodeName.toUpperCase() == 'LI') {
									active = $("li", list).removeClass(
											CLASSES.ACTIVE)
											.index(target(event));
									$(target(event)).addClass(CLASSES.ACTIVE);
								}
							}).click(function(event) {
						$(target(event)).addClass(CLASSES.ACTIVE);
						select();
						input.focus();
						return false;
					}).mousedown(function() {
						config.mouseDownOnSelect = true;
					}).mouseup(function() {
						config.mouseDownOnSelect = false;
					});
			list.scrollTop = function(scroll) {
				if (typeof scroll === "undefined") {
					return list[0].scrollTop;
				} else {
					list[0].scrollTop = scroll;
				}
			};
			
			list.innerHeight = function() {
				return list[0].scrollHeight;
			};
			if (options.width > 0)
				element.css("width", options.width);
			needsInit = false;
		}
		function target(event) {
			var element = event.target;
			while (element && element.tagName != "LI")
				element = element.parentNode;
			if (!element)
				return [];
			return element;
		}
		function moveSelect(step) {
			listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);
			movePosition(step);
			var activeItem = listItems.slice(active, active + 1).addClass(
					CLASSES.ACTIVE);
			if (options.scroll) {
				var offset = 0;
				listItems.slice(0, active).each(function() {
					offset += this.offsetHeight;
				});
				var currentItemOffset = offset + activeItem[0].offsetHeight; 
				if ((currentItemOffset - list.scrollTop()) > list[0].clientHeight) {
					if ((currentItemOffset - list.scrollTop() - list[0].clientHeight) <= activeItem[0].offsetHeight) {
						list.scrollTop(list.scrollTop() + activeItem[0].offsetHeight);
					} else {
						list.scrollTop(offset);
					}
				} 
				else if (offset < list.scrollTop()) {
					if ((list.scrollTop() - offset) <= activeItem[0].offsetHeight) {
						list.scrollTop(list.scrollTop() - activeItem[0].offsetHeight);
					} else {
						list.scrollTop(offset);
					}
				}
			}
		}
		;
		function movePosition(step) {
			active += step;
			if (active < 0) {
				active = listItems.size() - 1;
			} else if (active >= listItems.size()) {
				active = 0;
			}
		}
		function limitNumberOfItems(available) {
			return options.max && options.max < available ? options.max
					: available;
		}
		function fillList() {
			list.empty();
			var max = limitNumberOfItems(data.length);
			for ( var i = 0; i < max; i++) {
				if (!data[i])
					continue;
				var formatted = options.formatItem(data[i].data, i + 1, max,
						data[i].value, term);
				if (formatted === false)
					continue;
				var li = $("<li/>").html(options.highlight(formatted, term))
						.addClass(i % 2 == 0 ? "ac_even" : "ac_odd").appendTo(
								list)[0];
				$.data(li, "ac_data", data[i]);
			}
			listItems = list.find("li");
			if (options.selectFirst) {
				listItems.slice(0, 1).addClass(CLASSES.ACTIVE);
				active = 0;
			}
			if ($.fn.bgiframe)
				list.bgiframe();
		}
		return {
			display : function(d, q) {
				init();
				data = d;
				term = q;
				fillList();
			},
			next : function() {
				moveSelect(1);
			},
			prev : function() {
				moveSelect(-1);
			},
			pageUp : function() {
				if (active != 0 && active - 8 < 0) {
					moveSelect(-active);
				} else {
					moveSelect(-8);
				}
			},
			pageDown : function() {
				if (active != listItems.size() - 1
						&& active + 8 > listItems.size()) {
					moveSelect(listItems.size() - 1 - active);
				} else {
					moveSelect(8);
				}
			},
			hide : function() {
				element && element.hide();
				listItems && listItems.removeClass(CLASSES.ACTIVE);
				active = -1;
			},
			visible : function() {
				return element && element.is(":visible");
			},
			current : function() {
				return this.visible()
						&& (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst
								&& listItems[0]);
			},
			show : function() {
				var offset = $(input).offset();
				element.css(
						{
							width : typeof options.width == "string"
									|| options.width > 0 ? options.width : $(
									input).width(),
							top : offset.top + input.offsetHeight,
							left : offset.left
						}).show();
				if (options.scroll) {
					if (list.scrollTop) {
						list.scrollTop(0);
					}
					list.css( {
						maxHeight : options.scrollHeight,
						overflow : 'auto'
					});
					if ($.browser.msie
							&& typeof document.body.style.maxHeight === "undefined") {
						var listHeight = 0;
						listItems.each(function() {
							listHeight += this.offsetHeight;
						});
						var scrollbarsVisible = listHeight > options.scrollHeight;
						list.css('height',
								scrollbarsVisible ? options.scrollHeight
										: listHeight);
						if (!scrollbarsVisible) {
							listItems.width(list.width()
									- parseInt(listItems.css("padding-left"))
									- parseInt(listItems.css("padding-right")));
						}
					}
				}
			},
			selected : function() {
				var selected = listItems
						&& listItems.filter("." + CLASSES.ACTIVE).removeClass(
								CLASSES.ACTIVE);
				return selected && selected.length
						&& $.data(selected[0], "ac_data");
			},
			emptyList : function() {
				list && list.empty();
			},
			unbind : function() {
				element && element.remove();
			}
		};
	};
	$.Autocompleter.Selection = function(field, start, end) {
		if (field.createTextRange) {
			var selRange = field.createTextRange();
			selRange.collapse(true);
			selRange.moveStart("character", start);
			selRange.moveEnd("character", end);
			selRange.select();
		} else if (field.setSelectionRange) {
			field.setSelectionRange(start, end);
		} else {
			if (field.selectionStart) {
				field.selectionStart = start;
				field.selectionEnd = end;
			}
		}
		field.focus();
	};
})(jQuery);
// hashtable.js
/**
 * Created by: Michael Synovic on: 01/12/2003
 * 
 * This is a Javascript implementation of the Java Hashtable object.
 * 
 * Contructor(s): Hashtable() Creates a new, empty hashtable
 * 
 * Method(s): void clear() Clears this hashtable so that it contains no keys.
 * boolean containsKey(String key) Tests if the specified object is a key in
 * this hashtable. boolean containsValue(Object value) Returns true if this
 * Hashtable maps one or more keys to this value. Object get(String key) Returns
 * the value to which the specified key is mapped in this hashtable. boolean
 * isEmpty() Tests if this hashtable maps no keys to values. Array keys()
 * Returns an array of the keys in this hashtable. void put(String key, Object
 * value) Maps the specified key to the specified value in this hashtable. A
 * NullPointerException is thrown is the key or value is null. Object
 * remove(String key) Removes the key (and its corresponding value) from this
 * hashtable. Returns the value of the key that was removed int size() Returns
 * the number of keys in this hashtable. String toString() Returns a string
 * representation of this Hashtable object in the form of a set of entries,
 * enclosed in braces and separated by the ASCII characters ", " (comma and
 * space). Array values() Returns a array view of the values contained in this
 * Hashtable.
 * 
 */
function Hashtable() {
	this.clear = hashtable_clear;
	this.containsKey = hashtable_containsKey;
	this.containsValue = hashtable_containsValue;
	this.get = hashtable_get;
	this.isEmpty = hashtable_isEmpty;
	this.keys = hashtable_keys;
	this.put = hashtable_put;
	this.remove = hashtable_remove;
	this.size = hashtable_size;
	this.toString = hashtable_toString;
	this.values = hashtable_values;
	this.hashtable = new Array();
}

/* =======Private methods for internal use only======== */

function hashtable_clear() {
	this.hashtable = new Array();
}

function hashtable_containsKey(key) {
	var exists = false;
	for ( var i in this.hashtable) {
		if (i == key && this.hashtable[i] != null) {
			exists = true;
			break;
		}
	}
	return exists;
}

function hashtable_containsValue(value) {
	var contains = false;
	if (value != null) {
		for ( var i in this.hashtable) {
			if (this.hashtable[i] == value) {
				contains = true;
				break;
			}
		}
	}
	return contains;
}

function hashtable_get(key) {
	return this.hashtable[key];
}

function hashtable_isEmpty() {
	return (parseInt(this.size()) == 0) ? true : false;
}

function hashtable_keys() {
	var keys = new Array();
	for ( var i in this.hashtable) {
		if (this.hashtable[i] != null)
			keys.push(i);
	}
	return keys;
}

function hashtable_put(key, value) {
	if (key == null || value == null) {
		throw "NullPointerException {" + key + "},{" + value + "}";
	} else {
		this.hashtable[key] = value;
	}
}

function hashtable_remove(key) {
	var rtn = this.hashtable[key];
	this.hashtable[key] = null;
	return rtn;
}

function hashtable_size() {
	var size = 0;
	for ( var i in this.hashtable) {
		if (this.hashtable[i] != null)
			size++;
	}
	return size;
}

function hashtable_toString() {
	var result = "";
	for ( var i in this.hashtable) {
		if (this.hashtable[i] != null)
			result += "{" + i + "},{" + this.hashtable[i] + "}\n";
	}
	return result;
}

function hashtable_values() {
	var values = new Array();
	for ( var i in this.hashtable) {
		if (this.hashtable[i] != null)
			values.push(this.hashtable[i]);
	}
	return values;
}
// javascript.js
jQuery(document).ready(function() {
});
Liferay.Portlet.ready(function(portletId, jQueryObj) {
});
jQuery(document).last(function() {
});
var dhtmlgoodies_menuObj;
var currentZIndex = 5;
var liIndex = 0;
var visibleMenus = new Array();
var activeMenuItem = false;
var timeBeforeAutoHide = 1200;
var MSIE = navigator.userAgent.indexOf('MSIE') >= 0 ? true : false;
var navigatorVersion = navigator.appVersion.replace(
		/.*?MSIE ([0-9]\.[0-9]).*/g, '$1') / 1;
var menuBlockArray = new Array();
var menuParentOffsetLeft = false;

function getTopPos(inputObj) {
	var returnValue = inputObj.offsetTop;
	if (inputObj.tagName == 'LI'
			&& inputObj.parentNode.className == 'menuBlock1') {
		var aTag = inputObj.getElementsByTagName('A')[0];
		if (aTag)
			returnValue += aTag.parentNode.offsetHeight;
	}
	while ((inputObj = inputObj.offsetParent) != null)
		returnValue += inputObj.offsetTop;
	return returnValue;
}

function getLeftPos(inputObj) {
	var returnValue = inputObj.offsetLeft;
	while ((inputObj = inputObj.offsetParent) != null) {
		if (inputObj.id != 'banner') {
			returnValue += inputObj.offsetLeft;
		}
	}
	return returnValue;
}

function showHideSub() {
	var attr = this.parentNode.getAttribute('currentDepth');
	if (navigator.userAgent.indexOf('Opera') >= 0) {
		attr = this.parentNode.currentDepth;
	}
	this.className = 'currentDepth' + attr + 'over';
	if (activeMenuItem && activeMenuItem != this) {
		activeMenuItem.className = activeMenuItem.className.replace(/over/, '');
	}
	activeMenuItem = this;
	var numericIdThis = this.id.replace(/[^0-9]/g, '');
	var exceptionArray = new Array();
	var sub = document.getElementById('subOf' + numericIdThis);
	if (sub) {
		visibleMenus.push(sub);
		sub.style.display = '';
		sub.parentNode.className = sub.parentNode.className + 'over';
		exceptionArray[sub.id] = true;
	}
	var parent = this.parentNode;
	while (parent && parent.id && parent.tagName == 'UL') {
		visibleMenus.push(parent);
		exceptionArray[parent.id] = true;
		parent.style.display = '';
		var li = document.getElementById('dhtmlgoodies_listItem' + parent.id
				.replace(/[^0-9]/g, ''));
		if (li.className.indexOf('over') < 0)
			li.className = li.className + 'over';
		parent = li.parentNode;
	}
	hideMenuItems(exceptionArray);
}

function hideMenuItems(exceptionArray) {
	var newVisibleMenuArray = new Array();
	for ( var no = 0; no < visibleMenus.length; no++) {
		if (visibleMenus[no].className != 'menuBlock1' && visibleMenus[no].id) {
			if (!exceptionArray[visibleMenus[no].id]) {
				var el = visibleMenus[no].getElementsByTagName('A')[0];
				visibleMenus[no].style.display = 'none';
				var li = document
						.getElementById('dhtmlgoodies_listItem' + visibleMenus[no].id
								.replace(/[^0-9]/g, ''));
				if (li.className.indexOf('over') > 0)
					li.className = li.className.replace(/over/, '');
			} else {
				newVisibleMenuArray.push(visibleMenus[no]);
			}
		}
	}
	visibleMenus = newVisibleMenuArray;
}

var menuActive = true;
var hideTimer = 0;
function mouseOverMenu() {
	menuActive = true;
}

function mouseOutMenu() {
	menuActive = false;
	timerAutoHide();
}

function timerAutoHide() {
	if (menuActive) {
		hideTimer = 0;
		return;
	}
	if (hideTimer < timeBeforeAutoHide) {
		hideTimer += 100;
		setTimeout('timerAutoHide()', 99);
	} else {
		hideTimer = 0;
		autohideMenuItems();
	}
}

function autohideMenuItems() {
	if (!menuActive) {
		hideMenuItems(new Array());
		if (activeMenuItem)
			activeMenuItem.className = activeMenuItem.className.replace(/over/,
					'');
	}
}

function initSubMenus(inputObj, initOffsetLeft, currentDepth) {
	var subUl = inputObj.getElementsByTagName('UL');
	if (subUl.length > 0) {
		var ul = subUl[0];
		ul.id = 'subOf' + inputObj.id.replace(/[^0-9]/g, '');
		ul.setAttribute('currentDepth', currentDepth);
		ul.currentDepth = currentDepth;
		ul.className = 'menuBlock' + currentDepth;
		ul.onmouseover = mouseOverMenu;
		ul.onmouseout = mouseOutMenu;
		currentZIndex += 1;
		ul.style.zIndex = currentZIndex;
		menuBlockArray.push(ul);
		var topPos = getTopPos(inputObj);
		var leftPos = getLeftPos(inputObj) / 1 + initOffsetLeft / 1;
		var parentWidth = inputObj.offsetWidth;
		ul = dhtmlgoodies_menuObj.appendChild(ul);
		ul.style.position = 'absolute';
		ul.style.top = topPos + 'px';
		var li = ul.getElementsByTagName('LI')[0];
		var maxWidth = 0;
		while (li) {
			if (li.tagName == 'LI') {
				li.className = 'currentDepth' + currentDepth;
				li.id = 'dhtmlgoodies_listItem' + liIndex;
				liIndex++;
				var uls = li.getElementsByTagName('UL');
				li.onmouseover = showHideSub;
				if (uls.length > 0) {
					var offsetToFunction = li.getElementsByTagName('A')[0].offsetWidth + 2;
					if (navigatorVersion < 6 && MSIE)
						offsetToFunction += 15;
					initSubMenus(li, offsetToFunction, (currentDepth + 1));
				}
				if (MSIE) {
					var a = li.getElementsByTagName('A')[0];
					a.style.width = li.offsetWidth + 'px';
					a.style.display = 'block';
				}
				var offsetLi = li.offsetWidth;
				if (offsetLi > maxWidth) {
					maxWidth = offsetLi;
				}
			}
			li = li.nextSibling;
		}
		ul.style.display = 'none';
		ul.style.left = (leftPos <= 512) ? leftPos + 'px' : (leftPos
				+ parentWidth - maxWidth - 2) + 'px';
		if (!document.all) {
		}
	}
}

function resizeMenu() {
	var offsetParent = getLeftPos(dhtmlgoodies_menuObj);
	for ( var no = 0; no < menuBlockArray.length; no++) {
		var leftPos = menuBlockArray[no].style.left.replace('px', '') / 1;
		menuBlockArray[no].style.left = leftPos + offsetParent
				- menuParentOffsetLeft + 'px';
	}
	menuParentOffsetLeft = offsetParent;
}

function initDhtmlGoodiesMenu() {
	dhtmlgoodies_menuObj = document.getElementById('navigation');
	if (dhtmlgoodies_menuObj) {
		var aTags = dhtmlgoodies_menuObj.getElementsByTagName('A');
		var mainMenu = dhtmlgoodies_menuObj.getElementsByTagName('UL')[0];
		mainMenu.className = 'menuBlock1';
		mainMenu.style.zIndex = currentZIndex;
		mainMenu.setAttribute('currentDepth', 1);
		mainMenu.currentDepth = '1';
		mainMenu.onmouseover = mouseOverMenu;
		mainMenu.onmouseout = mouseOutMenu;
		var mainMenuItemsArray = new Array();
		var mainMenuItem = mainMenu.getElementsByTagName('LI')[0];
		mainMenu.style.height = mainMenuItem.offsetHeight + 2 + 'px';
		while (mainMenuItem) {
			mainMenuItem.className = 'currentDepth1';
			mainMenuItem.id = 'dhtmlgoodies_listItem' + liIndex;
			mainMenuItem.onmouseover = showHideSub;
			liIndex++;
			if (mainMenuItem.tagName == 'LI') {
				mainMenuItem.style.cssText = 'float:left;';
				mainMenuItem.style.styleFloat = 'left';
				mainMenuItemsArray[mainMenuItemsArray.length] = mainMenuItem;
				initSubMenus(mainMenuItem, 0, 2);
			}
			mainMenuItem = mainMenuItem.nextSibling;
		}
		for ( var no = 0; no < mainMenuItemsArray.length; no++) {
			initSubMenus(mainMenuItemsArray[no], 0, 2);
		}
		menuParentOffsetLeft = getLeftPos(dhtmlgoodies_menuObj);
		window.onresize = resizeMenu;
		dhtmlgoodies_menuObj.style.visibility = 'visible';
	}
}

function openPopUpJournalViewer(documentUrl) {
	var popup = window.open('about:blank', "popup");
	var fillJournalViewer = function(result) {
		if (popup.document.innerHTML) {
			popup.document.innerHTML = result.responseText;
		} else {
			popup.document.open();
			popup.document.write(result.responseText);
			popup.document.close();
		}
	};
	AjaxUtil.request(documentUrl, {
		method : 'POST',
		onComplete : fillJournalViewer
	});
}

window.onload = initDhtmlGoodiesMenu
// css_browser_selector.js
/*
 * CSS Browser Selector v0.2.9 Rafael Lima (http://rafael.adm.br)
 * http://rafael.adm.br/css_browser_selector License:
 * http://creativecommons.org/licenses/by/2.5/ Contributors:
 * http://rafael.adm.br/css_browser_selector#contributors
 */
var css_browser_selector = function() {
	var ua = navigator.userAgent.toLowerCase(), is = function(t) {
		return ua.indexOf(t) != -1;
	}, h = document.getElementsByTagName('html')[0], b = (!(/opera|webtv/i
			.test(ua)) && /msie\s(\d)/.test(ua)) ? ('ie ie' + RegExp.$1)
			: is('firefox/2') ? 'gecko ff2'
					: is('firefox/3') ? 'gecko ff3'
							: is('gecko/') ? 'gecko'
									: is('opera/9') ? 'opera opera9'
											: /opera\s(\d)/.test(ua) ? 'opera opera' + RegExp.$1
													: is('konqueror') ? 'konqueror'
															: is('chrome') ? 'chrome webkit safari'
																	: is('applewebkit/') ? 'webkit safari'
																			: is('mozilla/') ? 'gecko'
																					: '', os = (is('x11') || is('linux')) ? ' linux'
			: is('mac') ? ' mac' : is('win') ? ' win' : '';
	var c = b + os + ' js';
	h.className += h.className ? ' ' + c : c;
}();
