function proHover(){
	x = document.getElementById('meniuHolder').getElementsByTagName('li');
	for(i=1;i<x.length;i=i+2){
		x.item(i).onmouseover = function(){
			this.className+="ProHover";
			}
		
		x.item(i).onmouseout = function(){
			this.className=this.className.replace(new RegExp("ProHover\\b"), "");
			}		
		}
		
	if(document.getElementById('principale'))
	{
		x = document.getElementById('principale').getElementsByTagName('td');
		for(i=0;i<x.length;i++){
			x.item(i).onmouseover = function(){
				this.style.backgroundPosition="right bottom";
				}
			
			x.item(i).onmouseout = function(){
				this.style.backgroundPosition="left bottom";
			}
		}
	}
	centerMenu();
}

function centerMenu(){
	//alert(document.getElementById("siteHolder").offsetLeft);
	var x;
	var lungime=0;
				
	//meniu mare
	if(document.getElementById("meniuHolder")){
		document.getElementById("meniuLista").style.paddingLeft="0px";
		x = document.getElementById("meniuHolder").clientWidth;
		
		lungime = document.getElementById('sfarsit').clientWidth + document.getElementById('sfarsit').offsetLeft;
		
		x=(x-lungime)/2;


		x=Math.max(0,x);
		document.getElementById("meniuLista").style.paddingLeft=x+"px";

		
	}
}