
/* MAUSOVER FUNKCIJAS MENJUCIM*/

function getElementWidth(Elem) {
		if(document.getElementById) {
			var elem = document.getElementById(Elem);
		} else if (document.all){
			var elem = document.all[Elem];
		}
		xPos = elem.offsetWidth;
		return xPos;
}

function getAbsX(elt) { 
	return (elt.x) ? elt.x : getAbsPos(elt,"Left");
}

function getAbsY(elt) { 
	return (elt.y) ? elt.y : getAbsPos(elt,"Top");
}

function getAbsPos(elt,which) {
	iPos = 0;
	while (elt != null) {
		iPos += elt["offset" + which];
		elt = elt.offsetParent;
	}
	return iPos;
}

function HideContent(d) {
	if(d.length < 1) { return; }
	document.getElementById('submenu'+d).style.display = "none";
}

function SetElementLeftPos(d){
	if(document.getElementById('submenu'+d)){
		var pozicija = getAbsX(document.getElementById("m"+d));
		document.getElementById('submenu'+d).style.left=pozicija+'px';
	}
}

function SetElementTopPos(d, plus){
	if(document.getElementById('submenu'+d)){
		document.getElementById('submenu'+d).style.top=getAbsY(document.getElementById("m"+d))+plus+'px';
		
		
	}
}

function SetSubElementPos(d, plus, parent){
	if(document.getElementById('submenu'+d)){
		document.getElementById('submenu'+d).style.visibility = "hidden";
        document.getElementById('submenu'+d).style.display = "block";
                
        var submenu_atrasanaas = getAbsX(document.getElementById("submenu"+parent));
        var submenu_garums = submenu_atrasanaas+document.getElementById("submenu"+parent).clientWidth;
                
        var x_pozicija = getAbsX(document.getElementById('m'+d));
                
        var subsubmenu_garums = x_pozicija+document.getElementById('submenu'+d).clientWidth;
                
		document.getElementById('submenu'+d).style.top=getAbsY(document.getElementById("m"+d))+plus+'px';	
		
		//var submenu2_platums = document.getElementById("submenu2"+d).clientWidth;
		//var submenu_platums = document.getElementById("m"+d).clientWidth;
		//var endplus = 0;
		
        if(subsubmenu_garums>submenu_garums){
			jaunais_novietojums = x_pozicija - (subsubmenu_garums - submenu_garums)
            document.getElementById('submenu'+d).style.left=jaunais_novietojums+'px';
        }else{
            document.getElementById('submenu'+d).style.left=x_pozicija+'px';
	    }
            document.getElementById('submenu'+d).style.visibility = "visible";
                
		//document.getElementById('submenu'+d).style.left=x_pozicija+'px';
        //alert (subsubmenu_garums);
	}
}

function HideSubmenu(id){
	if(window.document.getElementById("submenu"+id)){
			window.document.getElementById("submenu"+id).style.display='none';
		}
}

function HideSubSubmenu(id){
	if(window.document.getElementById("submenu"+id)){
		window.document.getElementById("submenu"+id).style.display='none';
	}
	
}

/* MAUSOVER FUNKCIJAS MENJUCIM*/


function go(url) {
   window.location = url;
   return true;
}

var objekts;

function set_main_pic(bilde){
	if(objekts && objekts!=bilde){
		window.document.getElementById(objekts).src='img/menu/'+objekts+'.gif';
		window.document.getElementById(bilde).src='img/menu/'+bilde+'_in.gif';
	}else{
		window.document.getElementById(bilde).src='img/menu/'+bilde+'_in.gif';
	}
	objekts = bilde;
}