
	// Global JavaScript Document
	
	// ---  HM_array  --- //
	document.write('<scr' + 'ipt src="/js/hiermenus/HM_Loader.js" type="text/javascript"><\/scr' + 'ipt>');
	
	_d = document;

	// Init
	onload = global_init
	
	function global_init()
	{
		// Local Init Function
		local_init()

	}
	
	// Function Displaying off Z-Index Bug Ie Elements 
	function display_on()
	{
		for(i=0;i<display_array.length;i++) display_array[i].style.visibility = "hidden"
	}
	function display_off()
	{
		for(i=0;i<display_array.length;i++) display_array[i].style.visibility = "visible"
	}

	function getPageOffsetLeft(el)
	{
		var x;
		// Return the x coordinate of an element relative to the page.
		if(!document.layers)
		{
			x = el.offsetLeft;
			if(el.offsetParent != null) x += getPageOffsetLeft(el.offsetParent)
		}
		else x = el.x
		return x;
	}
	
	function getPageOffsetTop(el)
	{
		var y;
		// Return the x coordinate of an element relative to the page.
		if(!document.layers)
		{
			y = el.offsetTop;
			if(el.offsetParent != null) y += getPageOffsetTop(el.offsetParent);
		}
		else y = el.y
		return y;
	}

	// HM Array Functions
	if(window.event + "" == "undefined") event = null;
	function HM_f_PopUp(){return false};
	function HM_f_PopDown(){return false};
	popUp = HM_f_PopUp;
	popDown = HM_f_PopDown;


