var doschowania=new Array();

function prod_hover(id,typ){
	if(typ==1){
		document.getElementById(id+'a').className='prod_hover';
		document.getElementById(id+'b').className='hover';
	}
	if(typ==0){
		document.getElementById(id+'a').className='prod';
		document.getElementById(id+'b').className='';
	}
}

function findPosition(oElement){
	if(typeof(oElement.offsetParent)!='undefined'){
		for(var posX=0,posY=0;oElement;oElement=oElement.offsetParent) {
			posX+=oElement.offsetLeft;
			posY+=oElement.offsetTop;
		}
		return [posX,posY];
	}else{
		return [ oElement.x, oElement.y ];
	}
}

function timer_chowaj(f,idparent){
//	animatedcollapse.hide(idparent)
	if(f==1 && document.getElementById(idparent))t=setTimeout('animatedcollapse.hide(\''+idparent+'\')',200);
	if(f==0 && typeof(t)!=='undefined')clearTimeout(t);
}

function schowaj_warstwe(event,idparent,idmenu){
	var toElement=null;
	if(event.relatedTarget)toElement=event.relatedTarget;
	else if(event.toElement)toElement=event.toElement;

	while(toElement && toElement.id!=idparent)toElement=toElement.parentNode;
	if(!toElement){
//		animatedcollapse.hide(idparent);
		timer_chowaj(1,idparent);
		var menufield=document.getElementById(idmenu);
		if(menufield.className!='linkoverclicked' && menufield.className!='linkovernoclicked')menufield.className='link';
	}
}

function zmien_menu(f,idelement){
	var menufield=document.getElementById('menu'+idelement);
	var podmenufield=document.getElementById('podmenu'+idelement);
	if(f==0)if(menufield.className!='linkoverclicked' && menufield.className!='linkovernoclicked')menufield.className='link';
	if(f==1)if(menufield.className!='linkoverclicked' && menufield.className!='linkovernoclicked')if(podmenufield){
		menufield.className='linkover';
		animatedcollapse.show('podmenu'+idelement);
	}else menufield.className='linkoverno';
}

function zmien_menuobrazek(f,idelement){
	var menufield=document.getElementById('menu'+idelement);
	var podmenufield=document.getElementById('podmenu'+idelement);
	if(f==0)if(menufield.className!='linkoverclicked' && menufield.className!='linkovernoclicked')menufield.className='link';
	if(f==1)if(menufield.className!='linkoverclicked' && menufield.className!='linkovernoclicked')if(podmenufield)menufield.className='linkover';
	else menufield.className='linkoverno';
}


function schowaj_all(bez){
	for(i=0;i<doschowania.length;i++){
		if(doschowania[i]!=bez){
			var menufield=document.getElementById('menu'+doschowania[i]);
			var podmenufield=document.getElementById('podmenu'+doschowania[i]);
			if(menufield.className!='linkoverclicked' || menufield.className!='linkovernoclicked')menufield.className='link';
			animatedcollapse.hide('podmenu'+doschowania[i])
		}
	}
}
