/**
 * @author Mamad
 */
var strUrl=new Array();
var counter;


function appendMenu(_appendTo,_items,_locations,_rtl)
{
	_appendTo=document.getElementById(_appendTo);
	_appendTo.style.position="relative";
//	_appendTo.style.border="1px solid red";
	
	var menuAreaDiv=document.createElement("div");
	menuAreaDiv.style.zIndex = "100";
//	menuAreaDiv.style.position="absolute";
	menuAreaDiv.id=_appendTo.id+"_menuAreaDiv";
	menuAreaDiv.style.position="absolute";
	menuAreaDiv.style.visibility="hidden";
	(_rtl==false)?menuAreaDiv.style.left="0px":menuAreaDiv.style.right="0px";
	//menuAreaDiv.style.left="0px";
	menuAreaDiv.style.top=_appendTo.offsetHeight+"px";
//	menuAreaDiv.style.border="1px solid red";
	menuAreaDiv.style.backgroundColor="#F89C1C";
	menuAreaDiv.align = menuHorAlign;
	var menuDiv=new Array();
	var menuLink=new Array();
	for(var i=0;i<_items.length;i++)
	{
		menuDiv[i]=document.createElement("div");
		menuLink[i]=document.createElement("a");
		menuDiv[i].className="menuItems";
		menuDiv[i].id=_appendTo.id+"_menuDiv"+i;
		menuDiv[i].style.width=menuWidth+"px";
		menuDiv[i].style.height=menuHeight+"px";
		menuDiv[i].style.lineHeight=menuHeight+"px";
		menuDiv[i].style.textAlign=menuHorAlign;
		menuDiv[i].dir=menuDirection;
		menuDiv[i].style.zIndex = "101";
		//menuDiv[i].style.border="1px solid red";
		//_appendTo.style.border="1px solid red";
		menuLink[i].href=_locations[i];
		menuLink[i].className="menuLinks";
		menuLink[i].style.zIndex = "102";

		/**/
		if((_items.length-i)==1)
		{
			menuDiv[i].style.backgroundImage="url(images/links/links_bg_point_hor_01.gif)";
			menuDiv[i].style.backgroundRepeat="repeat-x";
			menuDiv[i].style.backgroundPosition="bottom";
			menuDiv[i].style.borderBottom="1px solid #fbc982";
		}

		//menuLink[i].appendChild(document.createTextNode(_items[i]));
		menuLink[i].innerHTML = _items[i];
		menuDiv[i].appendChild(menuLink[i]);
		menuAreaDiv.appendChild(menuDiv[i]);
	}
	//menuAreaDiv.style.backgroundColor="#ddd";
	//menuAreaDiv.style.height=(i*menuHeight)+10+"px";
	//menuAreaDiv.style.width=menuWidth+10+"px";
	_appendTo.appendChild(menuAreaDiv);
	_appendTo.onmouseover=function(){
									menuAreaDiv.style.visibility="visible";
									if(_appendTo.id=="productsMenu")
										document.getElementById('productsSepTd').className="linkSeperatorRollOver";
									else if(_appendTo.id=="servicesMenu")
										document.getElementById('servicesSepTd').className="linkSeperatorRollOver";
										
									if(menuStatus==false)
									{
									    _appendTo.childNodes[0].style.background="#f89c1c";
									    _appendTo.childNodes[0].style.paddingLeft="14px";
									    _appendTo.childNodes[0].style.paddingRight="14px";
									    _appendTo.childNodes[0].style.borderLeft="1px solid #fbc982";
									    _appendTo.childNodes[0].style.borderRight="1px solid #fbc982";
									}
									/*
									_appendTo.childNodes[0].style.backgroundImage="url(images/links/links_bg_point_hor_01.gif)";
									_appendTo.childNodes[0].style.backgroundRepeat="repeat-x";
									_appendTo.childNodes[0].style.backgroundPosition="bottom";
									*/
									};
	_appendTo.onmouseout=function(){
									menuAreaDiv.style.visibility="hidden";
									if(_appendTo.id=="productsMenu")
										document.getElementById('productsSepTd').className="linkSeperatorRoll";
									else if(_appendTo.id=="servicesMenu")
										document.getElementById('servicesSepTd').className="linkSeperatorRoll";
										
									if(menuStatus==false)
									{
									    _appendTo.childNodes[0].style.background="#6aad3c";
									    _appendTo.childNodes[0].style.paddingLeft="15px";
									    _appendTo.childNodes[0].style.paddingRight="15px";
									    _appendTo.childNodes[0].style.borderLeft="0px solid #fbc982";
									    _appendTo.childNodes[0].style.borderRight="0px solid #fbc982";
									}
									};
}